variant
stringclasses
3 values
prompt
stringlengths
216
286
query
stringlengths
168
299
metadata
unknown
id
stringlengths
28
28
split
stringclasses
1 value
v2
Sensor network script: Node: wind_speed | code: ref | fields: level, ts, qc, depth Sensor: dew_point | fields: reading, qc, level, ts Task: Retrieve lon from wind_speed that have at least one matching reading in dew_point sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="ref"), filter=has_match( source=Probe("dew_point", code="cnd"), match="ts", ), output="lon", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "ref", "inner_alias": "cnd", "proj_col": "lon", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004300
train
v2
Sensor network script: Node: air_quality | code: gst | fields: unit, qc, ts, lon Sensor: lightning | fields: unit, level, lon, lat Task: Retrieve depth from air_quality that have at least one matching reading in lightning sharing the same ts. Script:
readings = fetch( node=Node("air_quality", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="ts", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004301
train
v1
Sensor network script: Node: sunlight | code: thr | fields: type, reading, level, lon Sensor: visibility | fields: unit, lon, ts, depth Task: Retrieve lon from sunlight whose depth is found in visibility records where type matches the outer node. Script:
readings = fetch( node=Node("sunlight", code="thr"), filter=set_member( field="depth", source=Probe("visibility", code="clr"), match="type", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "visibility", "outer_alias": "thr", "inner_alias": "clr", "proj_col": "lon", "filter_col": "depth", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004302
train
v2
Sensor network script: Node: temperature | code: prt | fields: value, depth, type, ts Sensor: uv_index | fields: depth, ts, reading, type Task: Retrieve value from temperature that have at least one matching reading in uv_index sharing the same type. Script:
readings = fetch( node=Node("temperature", code="prt"), filter=has_match( source=Probe("uv_index", code="flx"), match="type", ), output="value", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "prt", "inner_alias": "flx", "proj_col": "value", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004303
train
v3
Sensor network script: Node: uv_index | code: clr | fields: level, lon, reading, value Sensor: sunlight | fields: ts, qc, lon, lat Task: Get lon from uv_index where depth exceeds the maximum depth from sunlight for the same ts. Script:
readings = fetch( node=Node("uv_index", code="clr"), filter=exceeds( field="depth", threshold=aggregate("MAX", "depth", source=Probe("sunlight", code="brt"), match="ts"), ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "sunlight", "outer_alias": "clr", "inner_alias": "brt", "proj_col": "lon", "filter_col": "depth", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004304
train
v2
Sensor network script: Node: evaporation | code: clr | fields: type, ts, lon, reading Sensor: drought_index | fields: unit, qc, depth, lat Task: Fetch value from evaporation that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("evaporation", code="clr"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "evaporation", "inner_table": "drought_index", "outer_alias": "clr", "inner_alias": "drt", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004305
train
v3
Sensor network script: Node: air_quality | code: clr | fields: level, reading, depth, type Sensor: rainfall | fields: value, type, unit, ts Task: Retrieve value from air_quality with value above the COUNT(value) of rainfall readings sharing the same depth. Script:
readings = fetch( node=Node("air_quality", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "value", source=Probe("rainfall", code="rnfl"), match="depth"), ), output="value", )
{ "outer_table": "air_quality", "inner_table": "rainfall", "outer_alias": "clr", "inner_alias": "rnfl", "proj_col": "value", "filter_col": "value", "agg_col": "value", "agg_fn": "COUNT", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004306
train
v2
Sensor network script: Node: snow_depth | code: gst | fields: reading, qc, lat, value Sensor: cloud_cover | fields: lat, ts, value, lon Task: Retrieve reading from snow_depth that have at least one matching reading in cloud_cover sharing the same ts. Script:
readings = fetch( node=Node("snow_depth", code="gst"), filter=has_match( source=Probe("cloud_cover", code="nbl"), match="ts", ), output="reading", )
{ "outer_table": "snow_depth", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004307
train
v3
Sensor network script: Node: wind_speed | code: thr | fields: ts, depth, reading, value Sensor: dew_point | fields: lon, reading, ts, depth Task: Retrieve lat from wind_speed with value above the MIN(value) of dew_point readings sharing the same ts. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "value", source=Probe("dew_point", code="cnd"), match="ts"), ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "lat", "filter_col": "value", "agg_col": "value", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004308
train
v1
Sensor network script: Node: sunlight | code: gst | fields: lon, ts, type, qc Sensor: pressure | fields: lon, type, unit, qc Task: Fetch depth from sunlight where qc exists in pressure sensor data for the same type. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="qc", source=Probe("pressure", code="mbl"), match="type", ), output="depth", )
{ "outer_table": "sunlight", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004309
train
v2
Sensor network script: Node: dew_point | code: prt | fields: reading, ts, qc, type Sensor: visibility | fields: depth, type, value, lon Task: Retrieve level from dew_point that have at least one matching reading in visibility sharing the same qc. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=has_match( source=Probe("visibility", code="clr"), match="qc", ), output="level", )
{ "outer_table": "dew_point", "inner_table": "visibility", "outer_alias": "prt", "inner_alias": "clr", "proj_col": "level", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004310
train
v3
Sensor network script: Node: soil_moisture | code: gst | fields: ts, type, level, qc Sensor: air_quality | fields: reading, lon, type, depth Task: Retrieve depth from soil_moisture with value above the COUNT(reading) of air_quality readings sharing the same type. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("air_quality", code="prt"), match="type"), ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "depth", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004311
train
v2
Sensor network script: Node: lightning | code: gst | fields: depth, type, reading, lon Sensor: temperature | fields: unit, ts, level, lon Task: Fetch value from lightning that have at least one corresponding temperature measurement for the same qc. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "value", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004312
train
v3
Sensor network script: Node: dew_point | code: mst | fields: unit, depth, ts, type Sensor: wind_speed | fields: level, qc, depth, lon Task: Retrieve reading from dew_point with depth above the MAX(reading) of wind_speed readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("wind_speed", code="gst"), match="type"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "wind_speed", "outer_alias": "mst", "inner_alias": "gst", "proj_col": "reading", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004313
train
v2
Sensor network script: Node: snow_depth | code: thr | fields: ts, lat, unit, type Sensor: frost | fields: qc, type, reading, ts Task: Retrieve value from snow_depth that have at least one matching reading in frost sharing the same depth. Script:
readings = fetch( node=Node("snow_depth", code="thr"), filter=has_match( source=Probe("frost", code="frs"), match="depth", ), output="value", )
{ "outer_table": "snow_depth", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "value", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004314
train
v2
Sensor network script: Node: soil_moisture | code: ref | fields: reading, type, lon, lat Sensor: pressure | fields: value, type, lon, lat Task: Get depth from soil_moisture where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("soil_moisture", code="ref"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004315
train
v2
Sensor network script: Node: wind_speed | code: thr | fields: ts, lat, depth, level Sensor: soil_moisture | fields: lat, type, level, unit Task: Get lat from wind_speed where a corresponding entry exists in soil_moisture with the same qc. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=has_match( source=Probe("soil_moisture", code="grvl"), match="qc", ), output="lat", )
{ "outer_table": "wind_speed", "inner_table": "soil_moisture", "outer_alias": "thr", "inner_alias": "grvl", "proj_col": "lat", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004316
train
v3
Sensor network script: Node: snow_depth | code: stn | fields: level, depth, lon, qc Sensor: evaporation | fields: lon, qc, type, depth Task: Fetch depth from snow_depth where depth is greater than the total of value in evaporation for matching type. Script:
readings = fetch( node=Node("snow_depth", code="stn"), filter=exceeds( field="depth", threshold=aggregate("SUM", "value", source=Probe("evaporation", code="evp"), match="type"), ), output="depth", )
{ "outer_table": "snow_depth", "inner_table": "evaporation", "outer_alias": "stn", "inner_alias": "evp", "proj_col": "depth", "filter_col": "depth", "agg_col": "value", "agg_fn": "SUM", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004317
train
v1
Sensor network script: Node: rainfall | code: prt | fields: depth, reading, lat, ts Sensor: turbidity | fields: lat, level, type, qc Task: Fetch lat from rainfall where type exists in turbidity sensor data for the same qc. Script:
readings = fetch( node=Node("rainfall", code="prt"), filter=set_member( field="type", source=Probe("turbidity", code="ftu"), match="qc", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "turbidity", "outer_alias": "prt", "inner_alias": "ftu", "proj_col": "lat", "filter_col": "type", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004318
train
v2
Sensor network script: Node: lightning | code: mst | fields: qc, level, lat, type Sensor: temperature | fields: ts, unit, reading, level Task: Get value from lightning where a corresponding entry exists in temperature with the same qc. Script:
readings = fetch( node=Node("lightning", code="mst"), filter=has_match( source=Probe("temperature", code="thr"), match="qc", ), output="value", )
{ "outer_table": "lightning", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "value", "join_col": "qc", "correlated_ref": "mst.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004319
train
v3
Sensor network script: Node: sunlight | code: gst | fields: reading, value, level, depth Sensor: air_quality | fields: ts, type, level, depth Task: Get value from sunlight where depth exceeds the count of depth from air_quality for the same unit. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("air_quality", code="prt"), match="unit"), ), output="value", )
{ "outer_table": "sunlight", "inner_table": "air_quality", "outer_alias": "gst", "inner_alias": "prt", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004320
train
v2
Sensor network script: Node: drought_index | code: thr | fields: value, reading, qc, level Sensor: dew_point | fields: reading, depth, lat, unit Task: Fetch level from drought_index that have at least one corresponding dew_point measurement for the same depth. Script:
readings = fetch( node=Node("drought_index", code="thr"), filter=has_match( source=Probe("dew_point", code="cnd"), match="depth", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "dew_point", "outer_alias": "thr", "inner_alias": "cnd", "proj_col": "level", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004321
train
v2
Sensor network script: Node: pressure | code: thr | fields: value, reading, depth, qc Sensor: drought_index | fields: depth, lat, ts, unit Task: Fetch level from pressure that have at least one corresponding drought_index measurement for the same qc. Script:
readings = fetch( node=Node("pressure", code="thr"), filter=has_match( source=Probe("drought_index", code="drt"), match="qc", ), output="level", )
{ "outer_table": "pressure", "inner_table": "drought_index", "outer_alias": "thr", "inner_alias": "drt", "proj_col": "level", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004322
train
v2
Sensor network script: Node: uv_index | code: gst | fields: lat, depth, qc, lon Sensor: dew_point | fields: lat, qc, depth, value Task: Retrieve lon from uv_index that have at least one matching reading in dew_point sharing the same type. Script:
readings = fetch( node=Node("uv_index", code="gst"), filter=has_match( source=Probe("dew_point", code="cnd"), match="type", ), output="lon", )
{ "outer_table": "uv_index", "inner_table": "dew_point", "outer_alias": "gst", "inner_alias": "cnd", "proj_col": "lon", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004323
train
v3
Sensor network script: Node: visibility | code: mst | fields: lat, qc, value, lon Sensor: humidity | fields: reading, depth, lat, qc Task: Retrieve value from visibility with depth above the COUNT(depth) of humidity readings sharing the same type. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=exceeds( field="depth", threshold=aggregate("COUNT", "depth", source=Probe("humidity", code="hgr"), match="type"), ), output="value", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004324
train
v2
Sensor network script: Node: temperature | code: gst | fields: depth, reading, unit, lon Sensor: turbidity | fields: reading, ts, unit, lon Task: Fetch reading from temperature that have at least one corresponding turbidity measurement for the same unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="unit", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "reading", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004325
train
v1
Sensor network script: Node: rainfall | code: mst | fields: unit, lon, lat, ts Sensor: humidity | fields: qc, lon, lat, depth Task: Get lat from rainfall where unit appears in humidity readings with matching type. Script:
readings = fetch( node=Node("rainfall", code="mst"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "rainfall", "inner_table": "humidity", "outer_alias": "mst", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "unit", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004326
train
v1
Sensor network script: Node: air_quality | code: mst | fields: lat, lon, ts, type Sensor: frost | fields: lat, depth, reading, ts Task: Retrieve value from air_quality whose ts is found in frost records where ts matches the outer node. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="ts", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "value", "filter_col": "ts", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004327
train
v1
Sensor network script: Node: visibility | code: mst | fields: lat, lon, depth, type Sensor: temperature | fields: value, level, ts, reading Task: Retrieve lat from visibility whose ts is found in temperature records where unit matches the outer node. Script:
readings = fetch( node=Node("visibility", code="mst"), filter=set_member( field="ts", source=Probe("temperature", code="thr"), match="unit", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "lat", "filter_col": "ts", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004328
train
v1
Sensor network script: Node: pressure | code: mst | fields: lon, depth, lat, qc Sensor: frost | fields: value, lon, depth, reading Task: Fetch lat from pressure where unit exists in frost sensor data for the same unit. Script:
readings = fetch( node=Node("pressure", code="mst"), filter=set_member( field="unit", source=Probe("frost", code="frs"), match="unit", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "frost", "outer_alias": "mst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "unit", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004329
train
v1
Sensor network script: Node: soil_moisture | code: hub | fields: qc, reading, lat, level Sensor: wind_speed | fields: qc, lat, reading, depth Task: Get level from soil_moisture where type appears in wind_speed readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="hub"), filter=set_member( field="type", source=Probe("wind_speed", code="gst"), match="depth", ), output="level", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "hub", "inner_alias": "gst", "proj_col": "level", "filter_col": "type", "join_col": "depth", "correlated_ref": "hub.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004330
train
v3
Sensor network script: Node: humidity | code: hub | fields: depth, ts, qc, reading Sensor: temperature | fields: level, reading, lat, qc Task: Retrieve lon from humidity with depth above the MAX(value) of temperature readings sharing the same qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=exceeds( field="depth", threshold=aggregate("MAX", "value", source=Probe("temperature", code="thr"), match="qc"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "hub", "inner_alias": "thr", "proj_col": "lon", "filter_col": "depth", "agg_col": "value", "agg_fn": "MAX", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004331
train
v2
Sensor network script: Node: rainfall | code: stn | fields: lon, type, depth, level Sensor: pressure | fields: lat, depth, unit, level Task: Get lon from rainfall where a corresponding entry exists in pressure with the same unit. Script:
readings = fetch( node=Node("rainfall", code="stn"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="lon", )
{ "outer_table": "rainfall", "inner_table": "pressure", "outer_alias": "stn", "inner_alias": "mbl", "proj_col": "lon", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004332
train
v2
Sensor network script: Node: drought_index | code: gst | fields: lon, reading, value, unit Sensor: temperature | fields: ts, reading, level, type Task: Get depth from drought_index where a corresponding entry exists in temperature with the same unit. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=has_match( source=Probe("temperature", code="thr"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "temperature", "outer_alias": "gst", "inner_alias": "thr", "proj_col": "depth", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004333
train
v3
Sensor network script: Node: dew_point | code: ref | fields: depth, lat, qc, value Sensor: lightning | fields: lat, level, type, qc Task: Get reading from dew_point where reading exceeds the average reading from lightning for the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="reading", threshold=aggregate("AVG", "reading", source=Probe("lightning", code="tnd"), match="ts"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "lightning", "outer_alias": "ref", "inner_alias": "tnd", "proj_col": "reading", "filter_col": "reading", "agg_col": "reading", "agg_fn": "AVG", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004334
train
v3
Sensor network script: Node: soil_moisture | code: prt | fields: type, lon, level, ts Sensor: wind_speed | fields: ts, unit, reading, value Task: Get lat from soil_moisture where depth exceeds the minimum value from wind_speed for the same type. Script:
readings = fetch( node=Node("soil_moisture", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "value", source=Probe("wind_speed", code="gst"), match="type"), ), output="lat", )
{ "outer_table": "soil_moisture", "inner_table": "wind_speed", "outer_alias": "prt", "inner_alias": "gst", "proj_col": "lat", "filter_col": "depth", "agg_col": "value", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004335
train
v1
Sensor network script: Node: turbidity | code: ref | fields: type, level, reading, lat Sensor: pressure | fields: qc, level, reading, type Task: Retrieve level from turbidity whose ts is found in pressure records where ts matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="ref"), filter=set_member( field="ts", source=Probe("pressure", code="mbl"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "pressure", "outer_alias": "ref", "inner_alias": "mbl", "proj_col": "level", "filter_col": "ts", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004336
train
v1
Sensor network script: Node: lightning | code: prt | fields: reading, level, value, lon Sensor: cloud_cover | fields: unit, lat, depth, reading Task: Fetch lon from lightning where qc exists in cloud_cover sensor data for the same type. Script:
readings = fetch( node=Node("lightning", code="prt"), filter=set_member( field="qc", source=Probe("cloud_cover", code="nbl"), match="type", ), output="lon", )
{ "outer_table": "lightning", "inner_table": "cloud_cover", "outer_alias": "prt", "inner_alias": "nbl", "proj_col": "lon", "filter_col": "qc", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004337
train
v2
Sensor network script: Node: humidity | code: gst | fields: qc, lat, ts, depth Sensor: sunlight | fields: lat, unit, depth, ts Task: Fetch reading from humidity that have at least one corresponding sunlight measurement for the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("sunlight", code="brt"), match="ts", ), output="reading", )
{ "outer_table": "humidity", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "reading", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004338
train
v2
Sensor network script: Node: lightning | code: stn | fields: type, reading, unit, level Sensor: air_quality | fields: depth, level, type, ts Task: Get level from lightning where a corresponding entry exists in air_quality with the same unit. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "lightning", "inner_table": "air_quality", "outer_alias": "stn", "inner_alias": "prt", "proj_col": "level", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004339
train
v1
Sensor network script: Node: cloud_cover | code: thr | fields: type, value, unit, lon Sensor: frost | fields: level, type, value, depth Task: Get depth from cloud_cover where ts appears in frost readings with matching qc. Script:
readings = fetch( node=Node("cloud_cover", code="thr"), filter=set_member( field="ts", source=Probe("frost", code="frs"), match="qc", ), output="depth", )
{ "outer_table": "cloud_cover", "inner_table": "frost", "outer_alias": "thr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "ts", "join_col": "qc", "correlated_ref": "thr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004340
train
v1
Sensor network script: Node: turbidity | code: thr | fields: value, unit, ts, reading Sensor: humidity | fields: type, qc, value, ts Task: Retrieve lat from turbidity whose qc is found in humidity records where type matches the outer node. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "qc", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004341
train
v1
Sensor network script: Node: humidity | code: hub | fields: depth, reading, ts, level Sensor: visibility | fields: depth, value, qc, level Task: Get depth from humidity where type appears in visibility readings with matching qc. Script:
readings = fetch( node=Node("humidity", code="hub"), filter=set_member( field="type", source=Probe("visibility", code="clr"), match="qc", ), output="depth", )
{ "outer_table": "humidity", "inner_table": "visibility", "outer_alias": "hub", "inner_alias": "clr", "proj_col": "depth", "filter_col": "type", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004342
train
v1
Sensor network script: Node: visibility | code: prt | fields: lat, level, ts, lon Sensor: humidity | fields: reading, type, lat, unit Task: Fetch lat from visibility where qc exists in humidity sensor data for the same qc. Script:
readings = fetch( node=Node("visibility", code="prt"), filter=set_member( field="qc", source=Probe("humidity", code="hgr"), match="qc", ), output="lat", )
{ "outer_table": "visibility", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "filter_col": "qc", "join_col": "qc", "correlated_ref": "prt.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004343
train
v1
Sensor network script: Node: turbidity | code: stn | fields: reading, lon, level, depth Sensor: cloud_cover | fields: depth, reading, qc, value Task: Fetch reading from turbidity where type exists in cloud_cover sensor data for the same qc. Script:
readings = fetch( node=Node("turbidity", code="stn"), filter=set_member( field="type", source=Probe("cloud_cover", code="nbl"), match="qc", ), output="reading", )
{ "outer_table": "turbidity", "inner_table": "cloud_cover", "outer_alias": "stn", "inner_alias": "nbl", "proj_col": "reading", "filter_col": "type", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004344
train
v3
Sensor network script: Node: humidity | code: gst | fields: unit, reading, level, qc Sensor: frost | fields: qc, ts, type, level Task: Get lat from humidity where reading exceeds the maximum depth from frost for the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "depth", source=Probe("frost", code="frs"), match="ts"), ), output="lat", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "gst", "inner_alias": "frs", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MAX", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004345
train
v3
Sensor network script: Node: uv_index | code: hub | fields: reading, level, lat, lon Sensor: cloud_cover | fields: unit, qc, depth, type Task: Retrieve level from uv_index with reading above the AVG(depth) of cloud_cover readings sharing the same qc. Script:
readings = fetch( node=Node("uv_index", code="hub"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("cloud_cover", code="nbl"), match="qc"), ), output="level", )
{ "outer_table": "uv_index", "inner_table": "cloud_cover", "outer_alias": "hub", "inner_alias": "nbl", "proj_col": "level", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "qc", "correlated_ref": "hub.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004346
train
v1
Sensor network script: Node: temperature | code: gst | fields: qc, reading, ts, lon Sensor: turbidity | fields: level, reading, lat, value Task: Get depth from temperature where ts appears in turbidity readings with matching unit. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="ts", source=Probe("turbidity", code="ftu"), match="unit", ), output="depth", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "ts", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004347
train
v2
Sensor network script: Node: air_quality | code: mst | fields: level, unit, value, qc Sensor: pressure | fields: value, lat, level, lon Task: Fetch depth from air_quality that have at least one corresponding pressure measurement for the same unit. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=has_match( source=Probe("pressure", code="mbl"), match="unit", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "pressure", "outer_alias": "mst", "inner_alias": "mbl", "proj_col": "depth", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004348
train
v1
Sensor network script: Node: dew_point | code: thr | fields: lat, level, reading, value Sensor: rainfall | fields: level, lat, lon, reading Task: Get lon from dew_point where type appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=set_member( field="type", source=Probe("rainfall", code="rnfl"), match="type", ), output="lon", )
{ "outer_table": "dew_point", "inner_table": "rainfall", "outer_alias": "thr", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "type", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004349
train
v1
Sensor network script: Node: air_quality | code: stn | fields: unit, lat, qc, level Sensor: dew_point | fields: ts, depth, unit, qc Task: Fetch depth from air_quality where unit exists in dew_point sensor data for the same qc. Script:
readings = fetch( node=Node("air_quality", code="stn"), filter=set_member( field="unit", source=Probe("dew_point", code="cnd"), match="qc", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "dew_point", "outer_alias": "stn", "inner_alias": "cnd", "proj_col": "depth", "filter_col": "unit", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004350
train
v1
Sensor network script: Node: frost | code: thr | fields: qc, unit, value, type Sensor: cloud_cover | fields: type, lon, lat, qc Task: Fetch value from frost where unit exists in cloud_cover sensor data for the same type. Script:
readings = fetch( node=Node("frost", code="thr"), filter=set_member( field="unit", source=Probe("cloud_cover", code="nbl"), match="type", ), output="value", )
{ "outer_table": "frost", "inner_table": "cloud_cover", "outer_alias": "thr", "inner_alias": "nbl", "proj_col": "value", "filter_col": "unit", "join_col": "type", "correlated_ref": "thr.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004351
train
v1
Sensor network script: Node: soil_moisture | code: gst | fields: lat, type, unit, lon Sensor: pressure | fields: unit, type, depth, lon Task: Get lon from soil_moisture where type appears in pressure readings with matching depth. Script:
readings = fetch( node=Node("soil_moisture", code="gst"), filter=set_member( field="type", source=Probe("pressure", code="mbl"), match="depth", ), output="lon", )
{ "outer_table": "soil_moisture", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "type", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004352
train
v1
Sensor network script: Node: temperature | code: gst | fields: level, unit, depth, reading Sensor: pressure | fields: depth, level, lat, qc Task: Get lon from temperature where depth appears in pressure readings with matching qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=set_member( field="depth", source=Probe("pressure", code="mbl"), match="qc", ), output="lon", )
{ "outer_table": "temperature", "inner_table": "pressure", "outer_alias": "gst", "inner_alias": "mbl", "proj_col": "lon", "filter_col": "depth", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004353
train
v2
Sensor network script: Node: humidity | code: prt | fields: ts, unit, qc, value Sensor: frost | fields: ts, lon, unit, type Task: Retrieve lon from humidity that have at least one matching reading in frost sharing the same unit. Script:
readings = fetch( node=Node("humidity", code="prt"), filter=has_match( source=Probe("frost", code="frs"), match="unit", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "frost", "outer_alias": "prt", "inner_alias": "frs", "proj_col": "lon", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004354
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: reading, unit, type, level Sensor: temperature | fields: lon, level, lat, depth Task: Get reading from cloud_cover where reading exceeds the count of depth from temperature for the same type. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "cloud_cover", "inner_table": "temperature", "outer_alias": "mst", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004355
train
v3
Sensor network script: Node: visibility | code: clr | fields: level, value, lat, depth Sensor: temperature | fields: lat, type, level, unit Task: Fetch reading from visibility where reading is greater than the count of of depth in temperature for matching type. Script:
readings = fetch( node=Node("visibility", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("temperature", code="thr"), match="type"), ), output="reading", )
{ "outer_table": "visibility", "inner_table": "temperature", "outer_alias": "clr", "inner_alias": "thr", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "type", "correlated_ref": "clr.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004356
train
v3
Sensor network script: Node: humidity | code: stn | fields: value, lat, reading, depth Sensor: drought_index | fields: lon, qc, ts, reading Task: Fetch lon from humidity where depth is greater than the minimum of reading in drought_index for matching type. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("drought_index", code="drt"), match="type"), ), output="lon", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "lon", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004357
train
v1
Sensor network script: Node: drought_index | code: gst | fields: level, depth, qc, type Sensor: lightning | fields: ts, unit, qc, value Task: Retrieve depth from drought_index whose unit is found in lightning records where unit matches the outer node. Script:
readings = fetch( node=Node("drought_index", code="gst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="unit", ), output="depth", )
{ "outer_table": "drought_index", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004358
train
v3
Sensor network script: Node: lightning | code: clr | fields: type, reading, value, unit Sensor: turbidity | fields: ts, type, value, reading Task: Fetch value from lightning where value is greater than the minimum of depth in turbidity for matching qc. Script:
readings = fetch( node=Node("lightning", code="clr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("turbidity", code="ftu"), match="qc"), ), output="value", )
{ "outer_table": "lightning", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "value", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004359
train
v3
Sensor network script: Node: soil_moisture | code: clr | fields: lon, level, ts, type Sensor: turbidity | fields: type, level, unit, ts Task: Get reading from soil_moisture where reading exceeds the count of depth from turbidity for the same ts. Script:
readings = fetch( node=Node("soil_moisture", code="clr"), filter=exceeds( field="reading", threshold=aggregate("COUNT", "depth", source=Probe("turbidity", code="ftu"), match="ts"), ), output="reading", )
{ "outer_table": "soil_moisture", "inner_table": "turbidity", "outer_alias": "clr", "inner_alias": "ftu", "proj_col": "reading", "filter_col": "reading", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "ts", "correlated_ref": "clr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004360
train
v1
Sensor network script: Node: air_quality | code: mst | fields: value, reading, lon, depth Sensor: lightning | fields: lat, depth, level, type Task: Get depth from air_quality where qc appears in lightning readings with matching type. Script:
readings = fetch( node=Node("air_quality", code="mst"), filter=set_member( field="qc", source=Probe("lightning", code="tnd"), match="type", ), output="depth", )
{ "outer_table": "air_quality", "inner_table": "lightning", "outer_alias": "mst", "inner_alias": "tnd", "proj_col": "depth", "filter_col": "qc", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004361
train
v2
Sensor network script: Node: humidity | code: stn | fields: lat, unit, value, depth Sensor: temperature | fields: type, ts, qc, lon Task: Fetch lon from humidity that have at least one corresponding temperature measurement for the same type. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("temperature", code="thr"), match="type", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "temperature", "outer_alias": "stn", "inner_alias": "thr", "proj_col": "lon", "join_col": "type", "correlated_ref": "stn.type", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004362
train
v3
Sensor network script: Node: temperature | code: stn | fields: qc, ts, type, lat Sensor: soil_moisture | fields: unit, type, ts, lon Task: Get value from temperature where reading exceeds the minimum reading from soil_moisture for the same unit. Script:
readings = fetch( node=Node("temperature", code="stn"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="unit"), ), output="value", )
{ "outer_table": "temperature", "inner_table": "soil_moisture", "outer_alias": "stn", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004363
train
v3
Sensor network script: Node: turbidity | code: clr | fields: reading, level, unit, qc Sensor: frost | fields: unit, depth, value, level Task: Fetch depth from turbidity where value is greater than the count of of depth in frost for matching unit. Script:
readings = fetch( node=Node("turbidity", code="clr"), filter=exceeds( field="value", threshold=aggregate("COUNT", "depth", source=Probe("frost", code="frs"), match="unit"), ), output="depth", )
{ "outer_table": "turbidity", "inner_table": "frost", "outer_alias": "clr", "inner_alias": "frs", "proj_col": "depth", "filter_col": "value", "agg_col": "depth", "agg_fn": "COUNT", "join_col": "unit", "correlated_ref": "clr.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004364
train
v3
Sensor network script: Node: cloud_cover | code: mst | fields: value, lon, depth, reading Sensor: rainfall | fields: level, lon, unit, type Task: Fetch lon from cloud_cover where reading is greater than the minimum of depth in rainfall for matching unit. Script:
readings = fetch( node=Node("cloud_cover", code="mst"), filter=exceeds( field="reading", threshold=aggregate("MIN", "depth", source=Probe("rainfall", code="rnfl"), match="unit"), ), output="lon", )
{ "outer_table": "cloud_cover", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "lon", "filter_col": "reading", "agg_col": "depth", "agg_fn": "MIN", "join_col": "unit", "correlated_ref": "mst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004365
train
v2
Sensor network script: Node: lightning | code: gst | fields: lon, type, ts, qc Sensor: evaporation | fields: value, unit, level, lat Task: Retrieve level from lightning that have at least one matching reading in evaporation sharing the same type. Script:
readings = fetch( node=Node("lightning", code="gst"), filter=has_match( source=Probe("evaporation", code="evp"), match="type", ), output="level", )
{ "outer_table": "lightning", "inner_table": "evaporation", "outer_alias": "gst", "inner_alias": "evp", "proj_col": "level", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004366
train
v2
Sensor network script: Node: turbidity | code: gst | fields: unit, depth, lon, ts Sensor: lightning | fields: unit, lat, depth, ts Task: Fetch value from turbidity that have at least one corresponding lightning measurement for the same type. Script:
readings = fetch( node=Node("turbidity", code="gst"), filter=has_match( source=Probe("lightning", code="tnd"), match="type", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "value", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004367
train
v2
Sensor network script: Node: pressure | code: prt | fields: type, depth, lon, qc Sensor: humidity | fields: lat, level, value, reading Task: Get lat from pressure where a corresponding entry exists in humidity with the same type. Script:
readings = fetch( node=Node("pressure", code="prt"), filter=has_match( source=Probe("humidity", code="hgr"), match="type", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "lat", "join_col": "type", "correlated_ref": "prt.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004368
train
v1
Sensor network script: Node: drought_index | code: mst | fields: unit, value, reading, lon Sensor: rainfall | fields: unit, lat, type, depth Task: Fetch level from drought_index where depth exists in rainfall sensor data for the same ts. Script:
readings = fetch( node=Node("drought_index", code="mst"), filter=set_member( field="depth", source=Probe("rainfall", code="rnfl"), match="ts", ), output="level", )
{ "outer_table": "drought_index", "inner_table": "rainfall", "outer_alias": "mst", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "depth", "join_col": "ts", "correlated_ref": "mst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004369
train
v2
Sensor network script: Node: turbidity | code: prt | fields: unit, level, qc, reading Sensor: drought_index | fields: type, level, reading, lon Task: Fetch level from turbidity that have at least one corresponding drought_index measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="prt"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "level", "join_col": "ts", "correlated_ref": "prt.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004370
train
v1
Sensor network script: Node: wind_speed | code: prt | fields: level, reading, value, ts Sensor: drought_index | fields: qc, type, depth, unit Task: Get value from wind_speed where qc appears in drought_index readings with matching depth. Script:
readings = fetch( node=Node("wind_speed", code="prt"), filter=set_member( field="qc", source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "wind_speed", "inner_table": "drought_index", "outer_alias": "prt", "inner_alias": "drt", "proj_col": "value", "filter_col": "qc", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004371
train
v3
Sensor network script: Node: temperature | code: gst | fields: level, ts, value, lat Sensor: turbidity | fields: lon, reading, type, ts Task: Fetch depth from temperature where reading is greater than the maximum of value in turbidity for matching type. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=exceeds( field="reading", threshold=aggregate("MAX", "value", source=Probe("turbidity", code="ftu"), match="type"), ), output="depth", )
{ "outer_table": "temperature", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "depth", "filter_col": "reading", "agg_col": "value", "agg_fn": "MAX", "join_col": "type", "correlated_ref": "gst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004372
train
v3
Sensor network script: Node: pressure | code: hub | fields: type, reading, qc, level Sensor: lightning | fields: type, lat, value, unit Task: Fetch value from pressure where depth is greater than the average of depth in lightning for matching type. Script:
readings = fetch( node=Node("pressure", code="hub"), filter=exceeds( field="depth", threshold=aggregate("AVG", "depth", source=Probe("lightning", code="tnd"), match="type"), ), output="value", )
{ "outer_table": "pressure", "inner_table": "lightning", "outer_alias": "hub", "inner_alias": "tnd", "proj_col": "value", "filter_col": "depth", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004373
train
v3
Sensor network script: Node: drought_index | code: stn | fields: qc, reading, type, unit Sensor: wind_speed | fields: qc, depth, reading, lon Task: Get level from drought_index where value exceeds the count of reading from wind_speed for the same qc. Script:
readings = fetch( node=Node("drought_index", code="stn"), filter=exceeds( field="value", threshold=aggregate("COUNT", "reading", source=Probe("wind_speed", code="gst"), match="qc"), ), output="level", )
{ "outer_table": "drought_index", "inner_table": "wind_speed", "outer_alias": "stn", "inner_alias": "gst", "proj_col": "level", "filter_col": "value", "agg_col": "reading", "agg_fn": "COUNT", "join_col": "qc", "correlated_ref": "stn.qc", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004374
train
v2
Sensor network script: Node: humidity | code: gst | fields: lat, unit, level, qc Sensor: turbidity | fields: qc, value, reading, type Task: Retrieve lon from humidity that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("humidity", code="gst"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="lon", )
{ "outer_table": "humidity", "inner_table": "turbidity", "outer_alias": "gst", "inner_alias": "ftu", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004375
train
v3
Sensor network script: Node: dew_point | code: ref | fields: depth, level, lat, reading Sensor: soil_moisture | fields: value, ts, reading, depth Task: Get value from dew_point where reading exceeds the minimum reading from soil_moisture for the same ts. Script:
readings = fetch( node=Node("dew_point", code="ref"), filter=exceeds( field="reading", threshold=aggregate("MIN", "reading", source=Probe("soil_moisture", code="grvl"), match="ts"), ), output="value", )
{ "outer_table": "dew_point", "inner_table": "soil_moisture", "outer_alias": "ref", "inner_alias": "grvl", "proj_col": "value", "filter_col": "reading", "agg_col": "reading", "agg_fn": "MIN", "join_col": "ts", "correlated_ref": "ref.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004376
train
v1
Sensor network script: Node: turbidity | code: hub | fields: type, unit, value, depth Sensor: rainfall | fields: qc, level, ts, lat Task: Get level from turbidity where ts appears in rainfall readings with matching type. Script:
readings = fetch( node=Node("turbidity", code="hub"), filter=set_member( field="ts", source=Probe("rainfall", code="rnfl"), match="type", ), output="level", )
{ "outer_table": "turbidity", "inner_table": "rainfall", "outer_alias": "hub", "inner_alias": "rnfl", "proj_col": "level", "filter_col": "ts", "join_col": "type", "correlated_ref": "hub.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004377
train
v2
Sensor network script: Node: uv_index | code: prt | fields: lat, lon, value, unit Sensor: snow_depth | fields: reading, qc, depth, unit Task: Fetch lat from uv_index that have at least one corresponding snow_depth measurement for the same unit. Script:
readings = fetch( node=Node("uv_index", code="prt"), filter=has_match( source=Probe("snow_depth", code="snw"), match="unit", ), output="lat", )
{ "outer_table": "uv_index", "inner_table": "snow_depth", "outer_alias": "prt", "inner_alias": "snw", "proj_col": "lat", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004378
train
v1
Sensor network script: Node: wind_speed | code: thr | fields: unit, lat, depth, qc Sensor: sunlight | fields: unit, lat, lon, qc Task: Fetch level from wind_speed where ts exists in sunlight sensor data for the same depth. Script:
readings = fetch( node=Node("wind_speed", code="thr"), filter=set_member( field="ts", source=Probe("sunlight", code="brt"), match="depth", ), output="level", )
{ "outer_table": "wind_speed", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "level", "filter_col": "ts", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004379
train
v2
Sensor network script: Node: frost | code: thr | fields: lat, qc, type, ts Sensor: turbidity | fields: lat, unit, lon, qc Task: Retrieve depth from frost that have at least one matching reading in turbidity sharing the same ts. Script:
readings = fetch( node=Node("frost", code="thr"), filter=has_match( source=Probe("turbidity", code="ftu"), match="ts", ), output="depth", )
{ "outer_table": "frost", "inner_table": "turbidity", "outer_alias": "thr", "inner_alias": "ftu", "proj_col": "depth", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004380
train
v3
Sensor network script: Node: dew_point | code: mst | fields: qc, depth, lat, lon Sensor: sunlight | fields: reading, qc, value, lon Task: Retrieve lat from dew_point with reading above the AVG(depth) of sunlight readings sharing the same type. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=exceeds( field="reading", threshold=aggregate("AVG", "depth", source=Probe("sunlight", code="brt"), match="type"), ), output="lat", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "mst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "reading", "agg_col": "depth", "agg_fn": "AVG", "join_col": "type", "correlated_ref": "mst.type", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004381
train
v2
Sensor network script: Node: lightning | code: stn | fields: reading, ts, lat, depth Sensor: drought_index | fields: reading, lat, value, depth Task: Fetch value from lightning that have at least one corresponding drought_index measurement for the same depth. Script:
readings = fetch( node=Node("lightning", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="depth", ), output="value", )
{ "outer_table": "lightning", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "value", "join_col": "depth", "correlated_ref": "stn.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004382
train
v2
Sensor network script: Node: sunlight | code: ref | fields: type, value, lat, ts Sensor: snow_depth | fields: lon, level, reading, depth Task: Get lat from sunlight where a corresponding entry exists in snow_depth with the same qc. Script:
readings = fetch( node=Node("sunlight", code="ref"), filter=has_match( source=Probe("snow_depth", code="snw"), match="qc", ), output="lat", )
{ "outer_table": "sunlight", "inner_table": "snow_depth", "outer_alias": "ref", "inner_alias": "snw", "proj_col": "lat", "join_col": "qc", "correlated_ref": "ref.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004383
train
v2
Sensor network script: Node: frost | code: gst | fields: value, level, reading, ts Sensor: drought_index | fields: reading, ts, qc, lat Task: Retrieve lon from frost that have at least one matching reading in drought_index sharing the same ts. Script:
readings = fetch( node=Node("frost", code="gst"), filter=has_match( source=Probe("drought_index", code="drt"), match="ts", ), output="lon", )
{ "outer_table": "frost", "inner_table": "drought_index", "outer_alias": "gst", "inner_alias": "drt", "proj_col": "lon", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004384
train
v2
Sensor network script: Node: turbidity | code: thr | fields: value, qc, depth, ts Sensor: humidity | fields: lon, depth, ts, value Task: Fetch value from turbidity that have at least one corresponding humidity measurement for the same ts. Script:
readings = fetch( node=Node("turbidity", code="thr"), filter=has_match( source=Probe("humidity", code="hgr"), match="ts", ), output="value", )
{ "outer_table": "turbidity", "inner_table": "humidity", "outer_alias": "thr", "inner_alias": "hgr", "proj_col": "value", "join_col": "ts", "correlated_ref": "thr.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004385
train
v2
Sensor network script: Node: rainfall | code: hub | fields: reading, unit, lon, type Sensor: frost | fields: lat, level, lon, unit Task: Fetch reading from rainfall that have at least one corresponding frost measurement for the same ts. Script:
readings = fetch( node=Node("rainfall", code="hub"), filter=has_match( source=Probe("frost", code="frs"), match="ts", ), output="reading", )
{ "outer_table": "rainfall", "inner_table": "frost", "outer_alias": "hub", "inner_alias": "frs", "proj_col": "reading", "join_col": "ts", "correlated_ref": "hub.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004386
train
v1
Sensor network script: Node: frost | code: ref | fields: reading, lat, qc, unit Sensor: air_quality | fields: ts, unit, lon, value Task: Retrieve level from frost whose type is found in air_quality records where unit matches the outer node. Script:
readings = fetch( node=Node("frost", code="ref"), filter=set_member( field="type", source=Probe("air_quality", code="prt"), match="unit", ), output="level", )
{ "outer_table": "frost", "inner_table": "air_quality", "outer_alias": "ref", "inner_alias": "prt", "proj_col": "level", "filter_col": "type", "join_col": "unit", "correlated_ref": "ref.unit", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004387
train
v2
Sensor network script: Node: dew_point | code: mst | fields: value, qc, lat, lon Sensor: snow_depth | fields: lat, lon, depth, ts Task: Fetch value from dew_point that have at least one corresponding snow_depth measurement for the same depth. Script:
readings = fetch( node=Node("dew_point", code="mst"), filter=has_match( source=Probe("snow_depth", code="snw"), match="depth", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "snow_depth", "outer_alias": "mst", "inner_alias": "snw", "proj_col": "value", "join_col": "depth", "correlated_ref": "mst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004388
train
v3
Sensor network script: Node: rainfall | code: gst | fields: unit, ts, level, qc Sensor: cloud_cover | fields: value, lat, reading, depth Task: Fetch level from rainfall where depth is greater than the maximum of reading in cloud_cover for matching depth. Script:
readings = fetch( node=Node("rainfall", code="gst"), filter=exceeds( field="depth", threshold=aggregate("MAX", "reading", source=Probe("cloud_cover", code="nbl"), match="depth"), ), output="level", )
{ "outer_table": "rainfall", "inner_table": "cloud_cover", "outer_alias": "gst", "inner_alias": "nbl", "proj_col": "level", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MAX", "join_col": "depth", "correlated_ref": "gst.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004389
train
v3
Sensor network script: Node: dew_point | code: prt | fields: value, level, ts, lon Sensor: temperature | fields: qc, level, reading, value Task: Get depth from dew_point where depth exceeds the minimum reading from temperature for the same depth. Script:
readings = fetch( node=Node("dew_point", code="prt"), filter=exceeds( field="depth", threshold=aggregate("MIN", "reading", source=Probe("temperature", code="thr"), match="depth"), ), output="depth", )
{ "outer_table": "dew_point", "inner_table": "temperature", "outer_alias": "prt", "inner_alias": "thr", "proj_col": "depth", "filter_col": "depth", "agg_col": "reading", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "prt.depth", "token_group": "T1", "fan_out": 1 }
sensor_fixed_v1_train_004390
train
v3
Sensor network script: Node: dew_point | code: thr | fields: ts, unit, qc, type Sensor: sunlight | fields: lat, qc, ts, level Task: Fetch reading from dew_point where value is greater than the minimum of depth in sunlight for matching depth. Script:
readings = fetch( node=Node("dew_point", code="thr"), filter=exceeds( field="value", threshold=aggregate("MIN", "depth", source=Probe("sunlight", code="brt"), match="depth"), ), output="reading", )
{ "outer_table": "dew_point", "inner_table": "sunlight", "outer_alias": "thr", "inner_alias": "brt", "proj_col": "reading", "filter_col": "value", "agg_col": "depth", "agg_fn": "MIN", "join_col": "depth", "correlated_ref": "thr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004391
train
v2
Sensor network script: Node: humidity | code: clr | fields: value, ts, reading, level Sensor: uv_index | fields: level, type, unit, ts Task: Fetch level from humidity that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("humidity", code="clr"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="level", )
{ "outer_table": "humidity", "inner_table": "uv_index", "outer_alias": "clr", "inner_alias": "flx", "proj_col": "level", "join_col": "qc", "correlated_ref": "clr.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004392
train
v2
Sensor network script: Node: temperature | code: gst | fields: value, level, reading, lat Sensor: uv_index | fields: qc, lon, type, ts Task: Fetch reading from temperature that have at least one corresponding uv_index measurement for the same qc. Script:
readings = fetch( node=Node("temperature", code="gst"), filter=has_match( source=Probe("uv_index", code="flx"), match="qc", ), output="reading", )
{ "outer_table": "temperature", "inner_table": "uv_index", "outer_alias": "gst", "inner_alias": "flx", "proj_col": "reading", "join_col": "qc", "correlated_ref": "gst.qc", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004393
train
v1
Sensor network script: Node: pressure | code: gst | fields: qc, type, lon, depth Sensor: sunlight | fields: reading, ts, lat, unit Task: Get lat from pressure where qc appears in sunlight readings with matching ts. Script:
readings = fetch( node=Node("pressure", code="gst"), filter=set_member( field="qc", source=Probe("sunlight", code="brt"), match="ts", ), output="lat", )
{ "outer_table": "pressure", "inner_table": "sunlight", "outer_alias": "gst", "inner_alias": "brt", "proj_col": "lat", "filter_col": "qc", "join_col": "ts", "correlated_ref": "gst.ts", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004394
train
v2
Sensor network script: Node: cloud_cover | code: clr | fields: value, unit, depth, level Sensor: evaporation | fields: value, level, unit, qc Task: Get value from cloud_cover where a corresponding entry exists in evaporation with the same depth. Script:
readings = fetch( node=Node("cloud_cover", code="clr"), filter=has_match( source=Probe("evaporation", code="evp"), match="depth", ), output="value", )
{ "outer_table": "cloud_cover", "inner_table": "evaporation", "outer_alias": "clr", "inner_alias": "evp", "proj_col": "value", "join_col": "depth", "correlated_ref": "clr.depth", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004395
train
v2
Sensor network script: Node: humidity | code: stn | fields: level, reading, type, lon Sensor: drought_index | fields: value, ts, type, reading Task: Get value from humidity where a corresponding entry exists in drought_index with the same unit. Script:
readings = fetch( node=Node("humidity", code="stn"), filter=has_match( source=Probe("drought_index", code="drt"), match="unit", ), output="value", )
{ "outer_table": "humidity", "inner_table": "drought_index", "outer_alias": "stn", "inner_alias": "drt", "proj_col": "value", "join_col": "unit", "correlated_ref": "stn.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004396
train
v1
Sensor network script: Node: air_quality | code: prt | fields: qc, unit, level, reading Sensor: humidity | fields: ts, lat, lon, qc Task: Fetch value from air_quality where unit exists in humidity sensor data for the same unit. Script:
readings = fetch( node=Node("air_quality", code="prt"), filter=set_member( field="unit", source=Probe("humidity", code="hgr"), match="unit", ), output="value", )
{ "outer_table": "air_quality", "inner_table": "humidity", "outer_alias": "prt", "inner_alias": "hgr", "proj_col": "value", "filter_col": "unit", "join_col": "unit", "correlated_ref": "prt.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004397
train
v1
Sensor network script: Node: sunlight | code: gst | fields: type, ts, qc, unit Sensor: lightning | fields: value, lon, level, qc Task: Fetch lon from sunlight where unit exists in lightning sensor data for the same unit. Script:
readings = fetch( node=Node("sunlight", code="gst"), filter=set_member( field="unit", source=Probe("lightning", code="tnd"), match="unit", ), output="lon", )
{ "outer_table": "sunlight", "inner_table": "lightning", "outer_alias": "gst", "inner_alias": "tnd", "proj_col": "lon", "filter_col": "unit", "join_col": "unit", "correlated_ref": "gst.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004398
train
v1
Sensor network script: Node: dew_point | code: hub | fields: level, value, unit, lon Sensor: evaporation | fields: type, reading, qc, value Task: Fetch value from dew_point where type exists in evaporation sensor data for the same unit. Script:
readings = fetch( node=Node("dew_point", code="hub"), filter=set_member( field="type", source=Probe("evaporation", code="evp"), match="unit", ), output="value", )
{ "outer_table": "dew_point", "inner_table": "evaporation", "outer_alias": "hub", "inner_alias": "evp", "proj_col": "value", "filter_col": "type", "join_col": "unit", "correlated_ref": "hub.unit", "token_group": "T2", "fan_out": null }
sensor_fixed_v1_train_004399
train