cpdundon_cli_app_take3 0.2.3 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e72112879e2f0b16e7074248851506828e96995ad90b8666fbf608962dc44fd8
4
- data.tar.gz: 9954503ebf783bb19fc3164231863315963c97dd0f3e061eff5543a7ab91d53b
3
+ metadata.gz: 5b48bd944597f877f8b830ac3d7b66439b15d706fa03c566b5b6946c691bde28
4
+ data.tar.gz: 9b763e0b85cd1220f4aab67d52613558c425b6fd630e4a85333497e445d526f9
5
5
  SHA512:
6
- metadata.gz: ea29852392d039f467a18901a68123d6ddc750a1c63233c8aab2c2aa32bae9108bfe5e2bdb6ae311e0681245e24eec1f4306db90fe7584167cc6a1f41bb79038
7
- data.tar.gz: '029b0c908762170ce7e809a519f634a09b200b624aef96d34a31709d455efd7f94010eca88ae2a75f802bd6b391240471c44bf9f227ad5f8f72752cfc65a9a15'
6
+ metadata.gz: 6caf45a05d5af1480f2a7b012a5ad1f53e23a9ccb14a5e44dfeef90b55c7a9ba94a17a27d5e79ea5f1331317d6d0ff3704e108cf775aa5fdf992e1def1b19933
7
+ data.tar.gz: 6d771f3441842916b7bd7e9232ce003bcfeb6f5100c8d1e8f06f90e7a30469f032d9c73b88b0afbcb9cd5231e0088b0b9991486faddcfd520d3cbe2c9ed5790b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cpdundon_cli_app_take3 (0.1.1)
4
+ cpdundon_cli_app_take3 (0.2.3)
5
5
  savon (~> 2.0)
6
6
 
7
7
  GEM
data/bin/bin CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  require_relative '../lib/config'
4
4
 
5
- cli = CLI.new(8530973, 8518750, 'New York Harbor')
5
+ cli = CLI.new
6
6
  cli.main
data/lib/cli.rb CHANGED
@@ -2,15 +2,71 @@ require_relative './config'
2
2
 
3
3
  class CLI
4
4
 
5
- attr_reader :windID, :tideID, :location
5
+ attr_accessor :windID, :tideID, :windLocation, :tideLocation
6
6
 
7
- def initialize (windID, tideID, location)
8
- @windID = windID
9
- @tideID = tideID
10
- @location = location
7
+ def initialize ()
8
+ @windID = nil
9
+ @tideID = nil
10
+ @windLocation = nil
11
+ @tideLocation = nil
11
12
  end
12
13
 
13
14
  def main()
15
+ input = nil
16
+ input = decision("winds")
17
+ return input if input == "exit"
18
+
19
+ input = decision("tide")
20
+ return input if input == "exit"
21
+
22
+ input = observation_cycle
23
+ input
24
+ end
25
+
26
+ private
27
+ def decision(flag)
28
+ input = nil
29
+ iCaptured = nil
30
+ puts
31
+ puts "================================="
32
+ puts "'Exit' will stop data collection."
33
+ puts "================================="
34
+
35
+ if flag.strip.downcase == "winds"
36
+ stations = GetActiveStations.winds
37
+ else
38
+ stations = GetActiveStations.water_level
39
+ end
40
+
41
+ stations = stations.sort {|x,y| x.name <=> y.name}
42
+
43
+ sz = stations.size
44
+ until (input == "exit" || iCaptured)
45
+ puts
46
+ puts "Enter the index number of the #{flag.upcase} station you want to use."
47
+ (1..sz).each do |i|
48
+ puts "#{i}. Station named '#{stations[i-1].name}'."
49
+ end
50
+ puts
51
+ puts "Enter the index number of the #{flag.upcase} station you want to use."
52
+ input = gets.strip.downcase
53
+ iCaptured = (input == input.to_i.to_s) && input.to_i > 0 && input.to_i <= sz
54
+ end
55
+
56
+ if input != "exit" && flag == "winds"
57
+ sta = stations[input.to_i - 1]
58
+ self.windLocation = sta.name
59
+ self.windID = sta.iD
60
+ elsif input != "exit"
61
+ sta = stations[input.to_i - 1]
62
+ self.tideLocation = sta.name
63
+ self.tideID = sta.iD
64
+ end
65
+
66
+ input
67
+ end
68
+
69
+ def observation_cycle()
14
70
  input = nil
15
71
  puts
16
72
  puts "================================="
@@ -18,37 +74,40 @@ class CLI
18
74
  puts "================================="
19
75
  puts
20
76
 
77
+ gwl = GetWaterLevel.new
78
+ gwv = GetWind.new
79
+
21
80
  until (input == "exit") do
22
- puts "Enter 'y' to pull wind and tide measurements at the #{self.location} location."
23
- puts "Enter 'yd' for more detail."
81
+ puts "Enter 'y' to pull wind and tide measurements."
24
82
  puts
25
- puts "The NOAA service updates every 6 minutes."
83
+ puts "***The NOAA Service Updates Every 6 Minutes***"
26
84
  puts
27
85
 
28
86
  input = gets.strip.downcase
29
87
  puts
30
88
 
31
- if input == "y" || input == "yd"
32
- gwl = GetWaterLevel.new
33
- gwv = GetWind.new
89
+ if input == "y"
34
90
 
35
- wl_data = gwl.pull_data
36
- wv_data = gwv.pull_data
91
+ wl_data = gwl.pull_data(self.tideID)
92
+ wv_data = gwv.pull_data(self.windID)
37
93
 
38
94
  wl = NOAA_SOAP.most_recent(wl_data)
39
95
  wv = NOAA_SOAP.most_recent(wv_data)
40
96
 
41
- puts "Wind Speed at #{wv[:time_stamp]} GMT:"
97
+ puts "Using #{self.windLocation}:"
98
+ puts "Wind station time is #{wv[:time_stamp]} GMT:"
42
99
  puts "Wind speed is #{wv[:ws]} m\/s out of #{wv[:wd]} degrees."
43
- puts "Gusts to #{wv[:wg]} m\/s are reported." if input == 'yd'
100
+ puts "Gusts to #{wv[:wg]} m\/s are reported."
44
101
 
45
102
 
46
103
  puts
47
- puts "Water level at #{wl[:time_stamp]} GMT:"
104
+ puts "Using #{self.tideLocation}:"
105
+ puts "Tide station time is #{wl[:time_stamp]} GMT:"
48
106
  puts "The water level is #{wl[:wl]} meters above/below sea level."
49
- puts "Water level standard deviation is #{wl[:sigma]} meters." if input == 'yd'
107
+ puts "Water level standard deviation is #{wl[:sigma]} meters."
50
108
  end
51
- puts
109
+ puts
52
110
  end
111
+ input
53
112
  end
54
113
  end
data/lib/config.rb CHANGED
@@ -2,7 +2,10 @@ require_relative './gmt'
2
2
  require_relative './noaa_soap'
3
3
  require_relative './get_water_level'
4
4
  require_relative './get_wind'
5
+ require_relative './get_active_stations'
5
6
  require_relative './cli'
7
+ require_relative './station'
6
8
 
7
9
  require 'time'
8
10
  require 'savon'
11
+ require 'nokogiri'
@@ -1,3 +1,3 @@
1
1
  module CpdundonCliAppTake3
2
- VERSION = "0.2.3"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -7,4 +7,6 @@ module CpdundonCliAppTake3
7
7
  require 'get_wind'
8
8
  require 'cli'
9
9
  require 'config'
10
+ require 'station'
11
+ require 'get_active_stations'
10
12
  end
@@ -0,0 +1,61 @@
1
+ require_relative './config'
2
+
3
+ class GetActiveStations
4
+
5
+ FILE_PATH = "../run_support/responseStations.xml"
6
+
7
+ @@doc = []
8
+ @@water_level = []
9
+ @@winds = []
10
+
11
+ def self.water_level
12
+ self.pull_data if @@water_level.size == 0
13
+ @@water_level
14
+ end
15
+
16
+ def self.winds
17
+ self.pull_data if @@winds.size == 0
18
+ @@winds
19
+ end
20
+
21
+ private
22
+ def self.doc
23
+ @@doc
24
+ end
25
+
26
+
27
+ def self.pull_data
28
+
29
+ @@doc = []
30
+ @@water_level = []
31
+ @@winds = []
32
+
33
+ @@doc = File.open(FILE_PATH) { |f| Nokogiri::XML(f) }
34
+
35
+ stations = self.doc.xpath("//stationV2")
36
+ stations.each_entry do |e|
37
+ iD = e.xpath(".").attribute("ID").value
38
+ name = e.xpath(".").attribute("name").value
39
+
40
+ handle = e.xpath("./metadataV2/shef_id")[0].text
41
+ state = e.xpath("./metadataV2/location/state")[0].text
42
+ lat = e.xpath("./metadataV2/location/lat")[0].text
43
+ local = ((state == "NY") || (state == "NJ") || (state == "CT"))
44
+
45
+ water = e.xpath("./parameter[contains(@name, 'Water Level')]")
46
+ winds = e.xpath("./parameter[contains(@name, 'Winds')]")
47
+
48
+ sta = Station.new
49
+ sta.iD = iD
50
+ sta.name = name
51
+ sta.handle = handle
52
+ sta.state = state
53
+ sta.water_level = water.size > 0
54
+ sta.winds = winds.size > 0
55
+
56
+ @@winds << sta if local && sta.winds
57
+ @@water_level << sta if local && sta.water_level && lat.to_f < 42.5
58
+ # the latitude restriction pevents weird lake depth calculation data from getting into the data.
59
+ end
60
+ end
61
+ end
@@ -12,8 +12,8 @@ class GetWaterLevel < NOAA_SOAP
12
12
  super
13
13
  end
14
14
 
15
- def pull_data (station_id = 8454000)
16
- message = {stationId: station_id.to_s, beginDate: GMT.gmt_less_1h, endDate: GMT.gmt_now, \
15
+ def pull_data (station_id)
16
+ message = {stationId: station_id, beginDate: GMT.gmt_less_1h, endDate: GMT.gmt_now, \
17
17
  datum: "MLLW", unit: 0, timeZone: 0}
18
18
 
19
19
  response = self.pull_response(:get_wl_raw_six_min_and_metadata, message)
data/lib/get_wind.rb CHANGED
@@ -12,8 +12,8 @@ class GetWind < NOAA_SOAP
12
12
  super
13
13
  end
14
14
 
15
- def pull_data (station_id = 8454000)
16
- message = {stationId: station_id.to_s, beginDate: GMT.gmt_less_1h, endDate: GMT.gmt_now, \
15
+ def pull_data (station_id)
16
+ message = {stationId: station_id, beginDate: GMT.gmt_less_1h, endDate: GMT.gmt_now, \
17
17
  unit: "Meters", timeZone: 0}
18
18
 
19
19
  response = self.pull_response(:get_wind_and_metadata, message)
data/lib/noaa_pull_NYH CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  require 'cpdundon_cli_app_take3'
4
4
 
5
- cli = CLI.new(8530973, 8518750, 'New York Harbor')
5
+ cli = CLI.new
6
6
  cli.main
data/lib/noaa_soap.rb CHANGED
@@ -8,12 +8,17 @@ class NOAA_SOAP
8
8
  d
9
9
  end
10
10
 
11
- def initialize(wsdl = "https://opendap.co-ops.nos.noaa.gov/axis/webservices/waterlevelrawsixmin/wsdl/WaterLevelRawSixMin.wsdl")
11
+ def initialize(wsdl)
12
12
  create_client(wsdl)
13
13
  end
14
14
 
15
- def pull_response(operation, message)
16
- response = self.client.call(operation, message: message)
15
+ def pull_response(operation, message = nil)
16
+ if !!message
17
+ response = self.client.call(operation, message: message)
18
+ else
19
+ response = self.client.call(operation)
20
+ end
21
+
17
22
  response
18
23
  rescue Savon::SOAPFault => error
19
24
  fault_code = error.to_hash[:fault][:faultcode]
@@ -32,3 +37,9 @@ private
32
37
  self.client
33
38
  end
34
39
  end
40
+
41
+ class CustomError < StandardError
42
+ def initialize(msg)
43
+ super
44
+ end
45
+ end
data/lib/station.rb ADDED
@@ -0,0 +1,14 @@
1
+ require_relative './config'
2
+
3
+ class Station
4
+ attr_accessor :state, :handle, :name, :water_level, :winds, :iD
5
+
6
+ def initialize
7
+ self.handle = nil
8
+ self.name = nil
9
+ self.water_level = nil
10
+ self.winds = nil
11
+ self.iD = nil
12
+ self.state = nil
13
+ end
14
+ end
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="utf-8"?><stationsV2><stationV2 ID="1611400" name="Nawiliwili"><metadataV2><location><lat>21.9544</lat><long>-159.3561</long><state>HI</state></location><date_established>1954-11-24</date_established><shef_id>NWWH1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="3" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="3" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="1612340" name="Honolulu"><metadataV2><location><lat>21.3067</lat><long>-157.8670</long><state>HI</state></location><date_established>1905-01-01</date_established><shef_id>OOUH1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="1612480" name="Mokuoloe"><metadataV2><location><lat>21.4331</lat><long>-157.7900</long><state>HI</state></location><date_established>1957-05-03</date_established><shef_id>MOKH1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="3" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="1615680" name="Kahului, Kahului Harbor"><metadataV2><location><lat>20.8950</lat><long>-156.4767</long><state>HI</state></location><date_established>1946-12-19</date_established><shef_id>KLIH1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="1617433" name="Kawaihae"><metadataV2><location><lat>20.0366</lat><long>-155.8294</long><state>HI</state></location><date_established>1988-02-06</date_established><shef_id>KWHH1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="1617760" name="Hilo, Hilo Bay, Kuhio Bay"><metadataV2><location><lat>19.7303</lat><long>-155.0556</long><state>HI</state></location><date_established>1946-11-30</date_established><shef_id>ILOH1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="1619910" name="Sand Island, Midway Islands"><metadataV2><location><lat>28.2117</lat><long>-177.3600</long><state>United States of America</state></location><date_established>1947-02-02</date_established><shef_id>SNDP5</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="1630000" name="Apra Harbor, Guam"><metadataV2><location><lat>13.4434</lat><long>144.6564</long><state>United States of America</state></location><date_established>1948-03-11</date_established><shef_id>APRP7</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="1631428" name="Pago Bay, Guam"><metadataV2><location><lat>13.4283</lat><long>144.7969</long><state>United States of America</state></location><date_established>2004-04-22</date_established><shef_id>PGBP7</shef_id><deployment_designation>Global,USACE</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="1770000" name="Pago Pago, American Samoa"><metadataV2><location><lat>-14.2767</lat><long>-170.6894</long><state>American Samoa</state></location><date_established>1948-09-06</date_established><shef_id>NSTP6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="1820000" name="Kwajalein, Marshall Islands"><metadataV2><location><lat>8.7317</lat><long>167.7361</long><state>United States of America</state></location><date_established>1946-06-10</date_established><shef_id>KWJP8</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="1890000" name="Wake Island, Pacific Ocean"><metadataV2><location><lat>19.2907</lat><long>166.6176</long><state>United States of America</state></location><date_established>1950-05-29</date_established><shef_id>WAKP8</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="2695535" name="Bermuda Biological Station"><metadataV2><location><lat>32.3700</lat><long>-64.6950</long><state></state></location><date_established>1932-01-01</date_established><shef_id>FRCB6</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="2695540" name="Bermuda, St. Georges Island"><metadataV2><location><lat>32.3733</lat><long>-64.7033</long><state>Bermuda</state></location><date_established>1989-05-29</date_established><shef_id>BEPB6</shef_id><deployment_designation>Global</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8311030" name="Ogdensburg"><metadataV2><location><lat>44.7017</lat><long>-75.4940</long><state>NY</state></location><date_established>1900-09-01</date_established><shef_id>OBGN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="8311062" name="Alexandria Bay"><metadataV2><location><lat>44.3310</lat><long>-75.9345</long><state>NY</state></location><date_established>1983-06-01</date_established><shef_id>ALXN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="8410140" name="Eastport"><metadataV2><location><lat>44.9033</lat><long>-66.9850</long><state>ME</state></location><date_established>1929-09-12</date_established><shef_id>PSBM1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8411060" name="Cutler Farris Wharf"><metadataV2><location><lat>44.6570</lat><long>-67.2047</long><state>ME</state></location><date_established>1963-09-25</date_established><shef_id>CFWM1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8413320" name="Bar Harbor"><metadataV2><location><lat>44.3922</lat><long>-68.2043</long><state>ME</state></location><date_established>1947-08-16</date_established><shef_id>ATGM1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="2" name="Water Level" sensorID="B1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8418150" name="Portland"><metadataV2><location><lat>43.6561</lat><long>-70.2461</long><state>ME</state></location><date_established>1910-03-04</date_established><shef_id>CASM1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8419317" name="Wells"><metadataV2><location><lat>43.3200</lat><long>-70.5633</long><state>ME</state></location><date_established>1999-06-10</date_established><shef_id>WELM1</shef_id><deployment_designation>COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8423898" name="Fort Point"><metadataV2><location><lat>43.0714</lat><long>-70.7106</long><state>NH</state></location><date_established>1976-08-12</date_established><shef_id>FTPN3</shef_id><deployment_designation>Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/></stationV2><stationV2 ID="8443970" name="Boston"><metadataV2><location><lat>42.3539</lat><long>-71.0503</long><state>MA</state></location><date_established>1921-05-03</date_established><shef_id>BHBM3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8447386" name="Fall River"><metadataV2><location><lat>41.7043</lat><long>-71.1641</long><state>MA</state></location><date_established>1955-10-28</date_established><shef_id>FRVM3</shef_id><deployment_designation>PORTS,Global</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8447387" name="Borden Flats Light at Fall River"><metadataV2><location><lat>41.7050</lat><long>-71.1733</long><state>MA</state></location><date_established>1999-10-01</date_established><shef_id>BLTM3</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8447412" name="Fall River Visibility"><metadataV2><location><lat>41.6958</lat><long>-71.1798</long><state>MA</state></location><date_established>2015-03-09</date_established><shef_id>FRXM3</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Visibility" sensorID="O1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="8447435" name="Chatham, Lydia Cove"><metadataV2><location><lat>41.6885</lat><long>-69.9510</long><state>MA</state></location><date_established>1955-04-27</date_established><shef_id>CHTM3</shef_id><deployment_designation>Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/></stationV2><stationV2 ID="8447930" name="Woods Hole"><metadataV2><location><lat>41.5236</lat><long>-70.6711</long><state>MA</state></location><date_established>1932-07-16</date_established><shef_id>BZBM3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8449130" name="Nantucket Island"><metadataV2><location><lat>41.2853</lat><long>-70.0964</long><state>MA</state></location><date_established>1963-10-04</date_established><shef_id>NTKM3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8452314" name="Sandy Point, Prudence Island"><metadataV2><location><lat>41.6051</lat><long>-71.3042</long><state>RI</state></location><date_established>2015-02-13</date_established><shef_id>PRUR1</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="0"/><parameter DCP="1" name="Visibility" sensorID="O1" status="0"/><parameter DCP="1" name="Humidity" sensorID="R1" status="0"/></stationV2><stationV2 ID="8452660" name="Newport"><metadataV2><location><lat>41.5044</lat><long>-71.3261</long><state>RI</state></location><date_established>1930-09-11</date_established><shef_id>NWPR1</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="2" name="Water Level" sensorID="B1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8452944" name="Conimicut Light"><metadataV2><location><lat>41.7170</lat><long>-71.3430</long><state>RI</state></location><date_established>1999-09-28</date_established><shef_id>CPTR1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8452951" name="Potter Cove, Prudence Island"><metadataV2><location><lat>41.6372</lat><long>-71.3393</long><state>RI</state></location><date_established>1999-10-04</date_established><shef_id>PTCR1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8453662" name="Providence Visibility"><metadataV2><location><lat>41.7857</lat><long>-71.3831</long><state>RI</state></location><date_established>2016-09-27</date_established><shef_id>PVDR1</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Visibility" sensorID="O1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="8454000" name="Providence"><metadataV2><location><lat>41.8067</lat><long>-71.4006</long><state>RI</state></location><date_established>1938-06-03</date_established><shef_id>FOXR1</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8454049" name="Quonset Point"><metadataV2><location><lat>41.5869</lat><long>-71.4100</long><state>RI</state></location><date_established>1999-09-24</date_established><shef_id>QPTR1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8461490" name="New London, Thames River"><metadataV2><location><lat>41.3550</lat><long>-72.0867</long><state>CT</state></location><date_established>1938-06-11</date_established><shef_id>NLNC3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8465705" name="New Haven"><metadataV2><location><lat>41.2833</lat><long>-72.9083</long><state>CT</state></location><date_established>1999-08-11</date_established><shef_id>NWHC3</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8467150" name="Bridgeport"><metadataV2><location><lat>41.1758</lat><long>-73.1840</long><state>CT</state></location><date_established>1932-06-10</date_established><shef_id>BRHC3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8510560" name="Montauk"><metadataV2><location><lat>41.0483</lat><long>-71.9594</long><state>NY</state></location><date_established>1947-09-05</date_established><shef_id>MTKN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8516945" name="Kings Point"><metadataV2><location><lat>40.8103</lat><long>-73.7650</long><state>NY</state></location><date_established>1998-10-27</date_established><shef_id>KPTN6</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8517986" name="Verrazano-Narrows Air Gap"><metadataV2><location><lat>40.6062</lat><long>-74.0448</long><state>NY</state></location><date_established>2008-03-20</date_established><shef_id></shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8518750" name="The Battery"><metadataV2><location><lat>40.7006</lat><long>-74.0142</long><state>NY</state></location><date_established>1920-05-24</date_established><shef_id>BATN6</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8518962" name="Turkey Point Hudson River NERRS"><metadataV2><location><lat>42.0142</lat><long>-73.9392</long><state>NY</state></location><date_established>2017-06-20</date_established><shef_id>TKPN6</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="8519461" name="Bayonne Bridge Air Gap"><metadataV2><location><lat>40.6419</lat><long>-74.1414</long><state>NY</state></location><date_established>2004-11-16</date_established><shef_id></shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8519483" name="Bergen Point West Reach"><metadataV2><location><lat>40.6367</lat><long>-74.1417</long><state>NY</state></location><date_established>1981-09-17</date_established><shef_id>BGNN6</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8519532" name="Mariners Harbor"><metadataV2><location><lat>40.6383</lat><long>-74.1600</long><state>NY</state></location><date_established>2014-12-10</date_established><shef_id>MHRN6</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/></stationV2><stationV2 ID="8530973" name="Robbins Reef"><metadataV2><location><lat>40.6567</lat><long>-74.0650</long><state>NJ</state></location><date_established>1999-06-10</date_established><shef_id>ROBN4</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8531680" name="Sandy Hook"><metadataV2><location><lat>40.4669</lat><long>-74.0094</long><state>NJ</state></location><date_established>1910-01-07</date_established><shef_id>SDHN4</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8534720" name="Atlantic City"><metadataV2><location><lat>39.3567</lat><long>-74.4181</long><state>NJ</state></location><date_established>1911-08-15</date_established><shef_id>ACYN4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8536110" name="Cape May"><metadataV2><location><lat>38.9680</lat><long>-74.9597</long><state>NJ</state></location><date_established>1965-10-25</date_established><shef_id>CMAN4</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8537121" name="Ship John Shoal"><metadataV2><location><lat>39.3050</lat><long>-75.3750</long><state>NJ</state></location><date_established>1997-10-30</date_established><shef_id>SJSN4</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="2" name="Water Level" sensorID="B1" status="0"/><parameter DCP="1" name="Winds" sensorID="C1" status="0"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="0"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="0"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="0"/></stationV2><stationV2 ID="8539094" name="Burlington, Delaware River"><metadataV2><location><lat>40.0800</lat><long>-74.8730</long><state>NJ</state></location><date_established>1977-02-21</date_established><shef_id>BDRN4</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8540433" name="Marcus Hook"><metadataV2><location><lat>39.8117</lat><long>-75.4094</long><state>PA</state></location><date_established>1981-09-10</date_established><shef_id>MRCP1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8545240" name="Philadelphia"><metadataV2><location><lat>39.9300</lat><long>-75.1417</long><state>PA</state></location><date_established>1989-02-28</date_established><shef_id>PHBP1</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8545556" name="Ben Franklin Bridge"><metadataV2><location><lat>39.9528</lat><long>-75.1358</long><state>PA</state></location><date_established>2016-08-17</date_established><shef_id></shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8546252" name="Bridesburg"><metadataV2><location><lat>39.9830</lat><long>-75.0750</long><state>PA</state></location><date_established>1979-07-23</date_established><shef_id>BDSP1</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8548989" name="Newbold"><metadataV2><location><lat>40.1373</lat><long>-74.7519</long><state>PA</state></location><date_established>2001-10-27</date_established><shef_id>NBLP1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8551762" name="Delaware City"><metadataV2><location><lat>39.5817</lat><long>-75.5883</long><state>DE</state></location><date_established>2001-10-08</date_established><shef_id>DELD1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8551910" name="Reedy Point"><metadataV2><location><lat>39.5583</lat><long>-75.5733</long><state>DE</state></location><date_established>1956-07-30</date_established><shef_id>RDYD1</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8551911" name="Reedy Point Air Gap"><metadataV2><location><lat>39.5600</lat><long>-75.5683</long><state>DE</state></location><date_established>1982-07-01</date_established><shef_id></shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8555889" name="Brandywine Shoal Light"><metadataV2><location><lat>38.9870</lat><long>-75.1130</long><state>DE</state></location><date_established>1984-03-18</date_established><shef_id>BRND1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8557380" name="Lewes"><metadataV2><location><lat>38.7828</lat><long>-75.1192</long><state>DE</state></location><date_established>1919-01-14</date_established><shef_id>LWSD1</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8570283" name="Ocean City Inlet"><metadataV2><location><lat>38.3283</lat><long>-75.0911</long><state>MD</state></location><date_established>1978-06-05</date_established><shef_id>OCIM2</shef_id><deployment_designation>NWLON,Global,USACE</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8571421" name="Bishops Head"><metadataV2><location><lat>38.2204</lat><long>-76.0387</long><state>MD</state></location><date_established>2005-03-22</date_established><shef_id>BISM2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8571892" name="Cambridge"><metadataV2><location><lat>38.5742</lat><long>-76.0722</long><state>MD</state></location><date_established>1980-10-21</date_established><shef_id>CAMM2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8573364" name="Tolchester Beach"><metadataV2><location><lat>39.2133</lat><long>-76.2450</long><state>MD</state></location><date_established>1971-06-24</date_established><shef_id>TCBM2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8573927" name="Chesapeake City"><metadataV2><location><lat>39.5267</lat><long>-75.8100</long><state>MD</state></location><date_established>1972-11-15</date_established><shef_id>CHCM2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8573928" name="Chesapeake City Air Gap"><metadataV2><location><lat>39.5267</lat><long>-75.8100</long><state>MD</state></location><date_established>2003-10-20</date_established><shef_id></shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8574680" name="Baltimore"><metadataV2><location><lat>39.2669</lat><long>-76.5794</long><state>MD</state></location><date_established>1902-07-01</date_established><shef_id>BLTM2</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8574728" name="Francis Scott Key Bridge"><metadataV2><location><lat>39.2200</lat><long>-76.5283</long><state>MD</state></location><date_established>2004-04-01</date_established><shef_id>FSKM2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="3" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8574729" name="Francis Scott Key Bridge N.E. Tower"><metadataV2><location><lat>39.2200</lat><long>-76.5250</long><state>MD</state></location><date_established>2007-06-04</date_established><shef_id>FSNM2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8575432" name="Bay Bridge Air Gap"><metadataV2><location><lat>38.9933</lat><long>-76.3820</long><state>MD</state></location><date_established>2006-03-09</date_established><shef_id></shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8575437" name="Chesapeake Bay Bridge"><metadataV2><location><lat>38.9948</lat><long>-76.3881</long><state>MD</state></location><date_established>2015-02-13</date_established><shef_id>CPVM2</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Visibility" sensorID="O1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="8575512" name="Annapolis"><metadataV2><location><lat>38.9833</lat><long>-76.4816</long><state>MD</state></location><date_established>1978-09-14</date_established><shef_id>APAM2</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8577018" name="Cove Point LNG Pier"><metadataV2><location><lat>38.4044</lat><long>-76.3855</long><state>MD</state></location><date_established>2004-03-01</date_established><shef_id>COVM2</shef_id><deployment_designation>PORTS,COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8577330" name="Solomons Island"><metadataV2><location><lat>38.3172</lat><long>-76.4508</long><state>MD</state></location><date_established>1937-11-05</date_established><shef_id>SLIM2</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8578240" name="Piney Point"><metadataV2><location><lat>38.1333</lat><long>-76.5333</long><state>MD</state></location><date_established>1958-11-21</date_established><shef_id>PPTM2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/></stationV2><stationV2 ID="8594900" name="Washington"><metadataV2><location><lat>38.8730</lat><long>-77.0217</long><state>DC</state></location><date_established>1924-11-10</date_established><shef_id>WASD2</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8631044" name="Wachapreague"><metadataV2><location><lat>37.6080</lat><long>-75.6858</long><state>VA</state></location><date_established>1978-06-28</date_established><shef_id>WAHV2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8632200" name="Kiptopeke"><metadataV2><location><lat>37.1652</lat><long>-75.9884</long><state>VA</state></location><date_established>1951-08-22</date_established><shef_id>KPTV2</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/></stationV2><stationV2 ID="8632837" name="Rappahannock Light"><metadataV2><location><lat>37.5383</lat><long>-76.0150</long><state>VA</state></location><date_established>1997-10-07</date_established><shef_id>RPLV2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8635027" name="Dahlgren"><metadataV2><location><lat>38.3197</lat><long>-77.0366</long><state>VA</state></location><date_established>1970-04-09</date_established><shef_id>NCDV2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8635750" name="Lewisetta"><metadataV2><location><lat>37.9954</lat><long>-76.4646</long><state>VA</state></location><date_established>1970-10-20</date_established><shef_id>LWTV2</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8636580" name="Windmill Point"><metadataV2><location><lat>37.6161</lat><long>-76.2900</long><state>VA</state></location><date_established>1970-06-24</date_established><shef_id>WNDV2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8637611" name="York River East Rear Range Light"><metadataV2><location><lat>37.2500</lat><long>-76.3000</long><state>VA</state></location><date_established>2004-11-23</date_established><shef_id>YKRV2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8637689" name="Yorktown USCG Training Center"><metadataV2><location><lat>37.2265</lat><long>-76.4788</long><state>VA</state></location><date_established>2004-01-22</date_established><shef_id>YKTV2</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8638511" name="Dominion Terminal Associates"><metadataV2><location><lat>36.9623</lat><long>-76.4242</long><state>VA</state></location><date_established>2004-07-01</date_established><shef_id>DOMV2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8638595" name="South Craney Island"><metadataV2><location><lat>36.9000</lat><long>-76.3386</long><state>VA</state></location><date_established>2004-07-01</date_established><shef_id>CRYV2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8638610" name="Sewells Point"><metadataV2><location><lat>36.9470</lat><long>-76.3300</long><state>VA</state></location><date_established>1927-07-01</date_established><shef_id>SWPV2</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8638614" name="Willoughby Degaussing Station"><metadataV2><location><lat>36.9817</lat><long>-76.3217</long><state>VA</state></location><date_established>2004-07-01</date_established><shef_id>WDSV2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="0"/></stationV2><stationV2 ID="8638901" name="CBBT, Chesapeake Channel"><metadataV2><location><lat>37.0329</lat><long>-76.0833</long><state>VA</state></location><date_established>2016-10-15</date_established><shef_id>CHBV2</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8638999" name="Cape Henry"><metadataV2><location><lat>36.9300</lat><long>-76.0067</long><state>VA</state></location><date_established>1982-04-24</date_established><shef_id>CHYV2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8639348" name="Money Point"><metadataV2><location><lat>36.7783</lat><long>-76.3017</long><state>VA</state></location><date_established>1997-12-17</date_established><shef_id>MNPV2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8651370" name="Duck"><metadataV2><location><lat>36.1833</lat><long>-75.7467</long><state>NC</state></location><date_established>1977-12-01</date_established><shef_id>DUKN7</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8652587" name="Oregon Inlet Marina"><metadataV2><location><lat>35.7950</lat><long>-75.5481</long><state>NC</state></location><date_established>1974-08-14</date_established><shef_id>ORIN7</shef_id><deployment_designation>NWLON,Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8654467" name="USCG Station Hatteras"><metadataV2><location><lat>35.2086</lat><long>-75.7042</long><state>NC</state></location><date_established>2010-04-22</date_established><shef_id>HCGN7</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8656483" name="Beaufort, Duke Marine Lab"><metadataV2><location><lat>34.7200</lat><long>-76.6700</long><state>NC</state></location><date_established>1964-06-04</date_established><shef_id>BFTN7</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8658120" name="Wilmington"><metadataV2><location><lat>34.2275</lat><long>-77.9536</long><state>NC</state></location><date_established>1908-01-01</date_established><shef_id>WLON7</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8658163" name="Wrightsville Beach"><metadataV2><location><lat>34.2133</lat><long>-77.7867</long><state>NC</state></location><date_established>2004-04-27</date_established><shef_id>JMPN7</shef_id><deployment_designation>NWLON,Global,NWS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8661070" name="Springmaid Pier"><metadataV2><location><lat>33.6550</lat><long>-78.9183</long><state>SC</state></location><date_established>1976-09-28</date_established><shef_id>MROS1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8662245" name="Oyster Landing (N Inlet Estuary)"><metadataV2><location><lat>33.3517</lat><long>-79.1867</long><state>SC</state></location><date_established>1982-12-13</date_established><shef_id>NITS1</shef_id><deployment_designation>COASTAL,Baruch</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/></stationV2><stationV2 ID="8664753" name="Don Holt Bridge Air Gap"><metadataV2><location><lat>32.8912</lat><long>-79.9644</long><state>SC</state></location><date_established>2013-04-27</date_established><shef_id></shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8665353" name="Ravenel Bridge"><metadataV2><location><lat>32.8031</lat><long>-79.9139</long><state>SC</state></location><date_established>2016-12-15</date_established><shef_id></shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8665530" name="Charleston, Cooper River Entrance"><metadataV2><location><lat>32.7808</lat><long>-79.9236</long><state>SC</state></location><date_established>1899-09-13</date_established><shef_id>CHTS1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8670674" name="Talmadge Memorial Bridge"><metadataV2><location><lat>32.0883</lat><long>-81.0990</long><state>GA</state></location><date_established>2016-04-12</date_established><shef_id></shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8670870" name="Fort Pulaski"><metadataV2><location><lat>32.0367</lat><long>-80.9017</long><state>GA</state></location><date_established>1935-07-01</date_established><shef_id>FPKG1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8720030" name="Fernandina Beach"><metadataV2><location><lat>30.6714</lat><long>-81.4658</long><state>FL</state></location><date_established>1897-05-08</date_established><shef_id>FRDF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8720215" name="Navy Fuel Depot"><metadataV2><location><lat>30.4000</lat><long>-81.6267</long><state>FL</state></location><date_established>1977-08-26</date_established><shef_id>NFDF1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="0"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="0"/><parameter DCP="1" name="Visibility" sensorID="O1" status="0"/><parameter DCP="1" name="Humidity" sensorID="R1" status="0"/></stationV2><stationV2 ID="8720218" name="Mayport (Bar Pilots Dock)"><metadataV2><location><lat>30.3982</lat><long>-81.4279</long><state>FL</state></location><date_established>1995-08-01</date_established><shef_id>MYPF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8720219" name="Dames Point"><metadataV2><location><lat>30.3872</lat><long>-81.5592</long><state>FL</state></location><date_established>1977-08-12</date_established><shef_id>DMSF1</shef_id><deployment_designation>PORTS,Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8720226" name="Southbank Riverwalk, St Johns River"><metadataV2><location><lat>30.3205</lat><long>-81.6591</long><state>FL</state></location><date_established>1995-04-26</date_established><shef_id>MSBF1</shef_id><deployment_designation>PORTS,Hydro,FLDEP</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8720228" name="Little Jetties"><metadataV2><location><lat>30.3794</lat><long>-81.4461</long><state>FL</state></location><date_established>2014-02-07</date_established><shef_id>LTJF1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Visibility" sensorID="O1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="8720233" name="Blount Island Command"><metadataV2><location><lat>30.3925</lat><long>-81.5225</long><state>FL</state></location><date_established>2013-11-11</date_established><shef_id>BLIF1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Visibility" sensorID="O1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="8720245" name="Jacksonville University"><metadataV2><location><lat>30.3541</lat><long>-81.6118</long><state>FL</state></location><date_established>2013-11-09</date_established><shef_id>JXUF1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8720376" name="Dames Point Bridge Air Gap"><metadataV2><location><lat>30.3845</lat><long>-81.5571</long><state>FL</state></location><date_established>2011-03-31</date_established><shef_id></shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8720625" name="Racy Point, St Johns River"><metadataV2><location><lat>29.8002</lat><long>-81.5498</long><state>FL</state></location><date_established>1995-04-26</date_established><shef_id>RCYF1</shef_id><deployment_designation>PORTS,Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8721604" name="Trident Pier, Port Canaveral"><metadataV2><location><lat>28.4158</lat><long>-80.5931</long><state>FL</state></location><date_established>1994-10-13</date_established><shef_id>TRDF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8722670" name="Lake Worth Pier, Atlantic Ocean"><metadataV2><location><lat>26.6128</lat><long>-80.0342</long><state>FL</state></location><date_established>1970-04-14</date_established><shef_id>LKWF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="8722956" name="South Port Everglades"><metadataV2><location><lat>26.0817</lat><long>-80.1167</long><state>FL</state></location><date_established>1973-07-20</date_established><shef_id>PEGF1</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8723214" name="Virginia Key, Biscayne Bay"><metadataV2><location><lat>25.7317</lat><long>-80.1617</long><state>FL</state></location><date_established>1994-01-26</date_established><shef_id>VAKF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8723970" name="Vaca Key, Florida Bay"><metadataV2><location><lat>24.7110</lat><long>-81.1065</long><state>FL</state></location><date_established>1970-12-04</date_established><shef_id>VCAF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8724580" name="Key West"><metadataV2><location><lat>24.5508</lat><long>-81.8081</long><state>FL</state></location><date_established>1913-01-18</date_established><shef_id>KYWF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="4" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8725110" name="Naples, Gulf of Mexico"><metadataV2><location><lat>26.1317</lat><long>-81.8075</long><state>FL</state></location><date_established>1965-03-04</date_established><shef_id>NPSF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="0"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8725520" name="Fort Myers, Caloosahatchee River"><metadataV2><location><lat>26.6480</lat><long>-81.8710</long><state>FL</state></location><date_established>1965-03-08</date_established><shef_id>FMRF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8726384" name="Port Manatee"><metadataV2><location><lat>27.6383</lat><long>-82.5625</long><state>FL</state></location><date_established>1976-03-24</date_established><shef_id>PMAF1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8726412" name="Middle Tampa Bay"><metadataV2><location><lat>27.6618</lat><long>-82.5995</long><state>FL</state></location><date_established>2013-08-01</date_established><shef_id>MTBF1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Visibility" sensorID="O1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="8726520" name="St. Petersburg, Tampa Bay"><metadataV2><location><lat>27.7606</lat><long>-82.6269</long><state>FL</state></location><date_established>1946-12-14</date_established><shef_id>SAPF1</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8726607" name="Old Port Tampa"><metadataV2><location><lat>27.8578</lat><long>-82.5528</long><state>FL</state></location><date_established>1991-07-17</date_established><shef_id>OPTF1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8726667" name="Mckay Bay Entrance"><metadataV2><location><lat>27.9130</lat><long>-82.4250</long><state>FL</state></location><date_established>1976-03-24</date_established><shef_id>MCYF1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/></stationV2><stationV2 ID="8726679" name="East Bay Causeway"><metadataV2><location><lat>27.9290</lat><long>-82.4257</long><state>FL</state></location><date_established>2009-04-16</date_established><shef_id>TSHF1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/></stationV2><stationV2 ID="8726694" name="TPA Cruise Terminal 2"><metadataV2><location><lat>27.9333</lat><long>-82.4333</long><state>FL</state></location><date_established>2006-03-22</date_established><shef_id>TPAF1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/></stationV2><stationV2 ID="8726724" name="Clearwater Beach"><metadataV2><location><lat>27.9783</lat><long>-82.8317</long><state>FL</state></location><date_established>1973-04-19</date_established><shef_id>CWBF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8727520" name="Cedar Key"><metadataV2><location><lat>29.1336</lat><long>-83.0309</long><state>FL</state></location><date_established>1914-03-12</date_established><shef_id>CKYF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8728690" name="Apalachicola"><metadataV2><location><lat>29.7244</lat><long>-84.9806</long><state>FL</state></location><date_established>1967-05-01</date_established><shef_id>APCF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8729108" name="Panama City"><metadataV2><location><lat>30.1523</lat><long>-85.7000</long><state>FL</state></location><date_established>1973-02-11</date_established><shef_id>PACF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8729210" name="Panama City Beach"><metadataV2><location><lat>30.2133</lat><long>-85.8783</long><state>FL</state></location><date_established>1989-09-20</date_established><shef_id>PCBF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8729840" name="Pensacola"><metadataV2><location><lat>30.4044</lat><long>-87.2100</long><state>FL</state></location><date_established>1923-04-30</date_established><shef_id>PCLF1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8732828" name="Weeks Bay, Mobile Bay"><metadataV2><location><lat>30.4169</lat><long>-87.8254</long><state>AL</state></location><date_established>2007-08-23</date_established><shef_id>WBYA1</shef_id><deployment_designation>COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/></stationV2><stationV2 ID="8734673" name="Fort Morgan"><metadataV2><location><lat>30.2283</lat><long>-88.0250</long><state>AL</state></location><date_established>2007-09-19</date_established><shef_id>FMOA1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8735180" name="Dauphin Island"><metadataV2><location><lat>30.2500</lat><long>-88.0750</long><state>AL</state></location><date_established>1966-03-30</date_established><shef_id>DILA1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8735391" name="Dog River Bridge"><metadataV2><location><lat>30.5652</lat><long>-88.0880</long><state>AL</state></location><date_established>2010-09-08</date_established><shef_id>BYSA1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8735523" name="East Fowl River Bridge"><metadataV2><location><lat>30.4440</lat><long>-88.1140</long><state>AL</state></location><date_established>1980-03-24</date_established><shef_id>EFRA1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8736163" name="Middle Bay Port, Mobile Bay"><metadataV2><location><lat>30.5272</lat><long>-88.0861</long><state>AL</state></location><date_established>2009-12-09</date_established><shef_id>MBPA1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Visibility" sensorID="O1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="8736897" name="Coast Guard Sector Mobile"><metadataV2><location><lat>30.6483</lat><long>-88.0583</long><state>AL</state></location><date_established>2007-08-03</date_established><shef_id>MCGA1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8737005" name="Pinto Island"><metadataV2><location><lat>30.6712</lat><long>-88.0310</long><state>AL</state></location><date_established>2009-12-15</date_established><shef_id>PTOA1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Visibility" sensorID="O1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="8737048" name="Mobile State Docks"><metadataV2><location><lat>30.7046</lat><long>-88.0396</long><state>AL</state></location><date_established>1980-03-24</date_established><shef_id>OBLA1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="2" name="Water Level" sensorID="B1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8737138" name="Chickasaw Creek"><metadataV2><location><lat>30.7819</lat><long>-88.0736</long><state>AL</state></location><date_established>2011-04-22</date_established><shef_id>CIKA1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8738043" name="West Fowl River Bridge"><metadataV2><location><lat>30.3766</lat><long>-88.1586</long><state>AL</state></location><date_established>2011-04-22</date_established><shef_id>WFRA1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8739803" name="Bayou La Batre Bridge"><metadataV2><location><lat>30.4062</lat><long>-88.2478</long><state>AL</state></location><date_established>2011-04-22</date_established><shef_id>BLBA1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8740166" name="Grand Bay NERR, Mississippi Sound"><metadataV2><location><lat>30.4132</lat><long>-88.4029</long><state>MS</state></location><date_established>2010-05-10</date_established><shef_id>GBRM6</shef_id><deployment_designation>COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="0"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/></stationV2><stationV2 ID="8741003" name="Petit Bois Island, Port of Pascagoula"><metadataV2><location><lat>30.2133</lat><long>-88.5000</long><state>MS</state></location><date_established>2008-04-03</date_established><shef_id>PTBM6</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8741533" name="Pascagoula NOAA Lab"><metadataV2><location><lat>30.3680</lat><long>-88.5631</long><state>MS</state></location><date_established>2005-09-13</date_established><shef_id>PNLM6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/></stationV2><stationV2 ID="8747437" name="Bay Waveland Yacht Club"><metadataV2><location><lat>30.3250</lat><long>-89.3250</long><state>MS</state></location><date_established>1978-05-31</date_established><shef_id>WYCM6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8760721" name="Pilottown"><metadataV2><location><lat>29.1783</lat><long>-89.2583</long><state>LA</state></location><date_established>1980-12-19</date_established><shef_id>PILL1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8760922" name="Pilots Station East, S.W. Pass"><metadataV2><location><lat>28.9322</lat><long>-89.4075</long><state>LA</state></location><date_established>2004-03-08</date_established><shef_id>PSTL1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="4" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8761305" name="Shell Beach"><metadataV2><location><lat>29.8683</lat><long>-89.6730</long><state>LA</state></location><date_established>1979-11-07</date_established><shef_id>SHBL1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8761724" name="Grand Isle"><metadataV2><location><lat>29.2630</lat><long>-89.9570</long><state>LA</state></location><date_established>1979-11-09</date_established><shef_id>GISL1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8761847" name="Crescent City Air Gap"><metadataV2><location><lat>29.9384</lat><long>-90.0573</long><state>LA</state></location><date_established>2009-05-29</date_established><shef_id></shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8761927" name="New Canal Station"><metadataV2><location><lat>30.0272</lat><long>-90.1130</long><state>LA</state></location><date_established>1982-11-21</date_established><shef_id>NWCL1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8761955" name="Carrollton"><metadataV2><location><lat>29.9329</lat><long>-90.1355</long><state>LA</state></location><date_established>1996-05-15</date_established><shef_id>CARL1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/></stationV2><stationV2 ID="8762002" name="Huey Long Bridge Air Gap"><metadataV2><location><lat>29.9431</lat><long>-90.1681</long><state></state></location><date_established>2008-04-01</date_established><shef_id></shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8762075" name="Port Fourchon, Belle Pass"><metadataV2><location><lat>29.1142</lat><long>-90.1993</long><state>LA</state></location><date_established>2003-07-19</date_established><shef_id>PTFL1</shef_id><deployment_designation>Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/></stationV2><stationV2 ID="8762482" name="West Bank 1, Bayou Gauche"><metadataV2><location><lat>29.7886</lat><long>-90.4203</long><state>LA</state></location><date_established>2003-05-02</date_established><shef_id>BYGL1</shef_id><deployment_designation>NWLON,Global,COASTAL,StChas</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8762483" name="I-10 Bonnet Carre Floodway"><metadataV2><location><lat>30.0679</lat><long>-90.3900</long><state>LA</state></location><date_established>2015-04-27</date_established><shef_id>BCFL1</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8762484" name="Frenier Landing"><metadataV2><location><lat>30.1057</lat><long>-90.4225</long><state>LA</state></location><date_established>2015-04-27</date_established><shef_id>FREL1</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="8764044" name="Berwick, Atchafalaya River"><metadataV2><location><lat>29.6675</lat><long>-91.2376</long><state>LA</state></location><date_established>2003-07-24</date_established><shef_id>TESL1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8764227" name="LAWMA, Amerada Pass"><metadataV2><location><lat>29.4496</lat><long>-91.3381</long><state>LA</state></location><date_established>2005-11-01</date_established><shef_id>AMRL1</shef_id><deployment_designation>NWLON,Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8764314" name="Eugene Island, North of , Gulf of Mexico"><metadataV2><location><lat>29.3675</lat><long>-91.3839</long><state>LA</state></location><date_established>2014-11-15</date_established><shef_id>EINL1</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8766072" name="Freshwater Canal Locks"><metadataV2><location><lat>29.5517</lat><long>-92.3052</long><state>LA</state></location><date_established>2005-08-03</date_established><shef_id>FRWL1</shef_id><deployment_designation>NWLON,Hydro</deployment_designation></metadataV2><parameter DCP="2" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8767816" name="Lake Charles"><metadataV2><location><lat>30.2236</lat><long>-93.2217</long><state>LA</state></location><date_established>1932-03-01</date_established><shef_id>LCLL1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8767931" name="Lake Charles I-210 Bridge Air Gap"><metadataV2><location><lat>30.2016</lat><long>-93.2806</long><state>LA</state></location><date_established>2009-02-17</date_established><shef_id></shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="8767961" name="Bulk Terminal"><metadataV2><location><lat>30.1902</lat><long>-93.3008</long><state>LA</state></location><date_established>2009-02-10</date_established><shef_id>BKTL1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/></stationV2><stationV2 ID="8768094" name="Calcasieu Pass"><metadataV2><location><lat>29.7682</lat><long>-93.3429</long><state>LA</state></location><date_established>1933-02-21</date_established><shef_id>CAPL1</shef_id><deployment_designation>NWLON,Hydro,COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8770475" name="Port Arthur"><metadataV2><location><lat>29.8671</lat><long>-93.9310</long><state>TX</state></location><date_established>1996-04-01</date_established><shef_id>PORT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8770520" name="Rainbow Bridge"><metadataV2><location><lat>29.9812</lat><long>-93.8847</long><state>TX</state></location><date_established>1993-08-04</date_established><shef_id>RBBT2</shef_id><deployment_designation>Hydro,TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/></stationV2><stationV2 ID="8770570" name="Sabine Pass North"><metadataV2><location><lat>29.7284</lat><long>-93.8701</long><state>TX</state></location><date_established>1985-01-28</date_established><shef_id>SBPT2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8770613" name="Morgans Point"><metadataV2><location><lat>29.6817</lat><long>-94.9850</long><state>TX</state></location><date_established>1973-06-18</date_established><shef_id>MGPT2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8770777" name="Manchester"><metadataV2><location><lat>29.7262</lat><long>-95.2658</long><state>TX</state></location><date_established>1995-01-01</date_established><shef_id>NCHT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8770808" name="High Island"><metadataV2><location><lat>29.5947</lat><long>-94.3903</long><state>TX</state></location><date_established>2012-11-25</date_established><shef_id>HIST2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8770822" name="Texas Point, Sabine Pass"><metadataV2><location><lat>29.6894</lat><long>-93.8419</long><state>TX</state></location><date_established>2011-06-28</date_established><shef_id>TXPT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8770971" name="Rollover Pass"><metadataV2><location><lat>29.5156</lat><long>-94.5106</long><state>TX</state></location><date_established>2004-02-24</date_established><shef_id>RLOT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8771013" name="Eagle Point"><metadataV2><location><lat>29.4800</lat><long>-94.9183</long><state>TX</state></location><date_established>1973-06-14</date_established><shef_id>EPTT2</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E2" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="8771341" name="Galveston Bay Entrance, North Jetty"><metadataV2><location><lat>29.3573</lat><long>-94.7248</long><state>TX</state></location><date_established>2000-04-17</date_established><shef_id>GNJT2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8771450" name="Galveston Pier 21"><metadataV2><location><lat>29.3100</lat><long>-94.7933</long><state>TX</state></location><date_established>1904-01-01</date_established><shef_id>GTOT2</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8771486" name="Galveston Railroad Bridge"><metadataV2><location><lat>29.3026</lat><long>-94.8971</long><state>TX</state></location><date_established>2012-09-01</date_established><shef_id>GRRT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8771972" name="San Luis Pass"><metadataV2><location><lat>29.0810</lat><long>-95.1313</long><state>TX</state></location><date_established>1990-01-01</date_established><shef_id>LUIT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="3" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="3" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8772447" name="Freeport"><metadataV2><location><lat>28.9433</lat><long>-95.3025</long><state>TX</state></location><date_established>2006-09-20</date_established><shef_id>FCGT2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8772985" name="Sargent"><metadataV2><location><lat>28.7714</lat><long>-95.6172</long><state>TX</state></location><date_established>2012-11-08</date_established><shef_id>SGNT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8773037" name="Seadrift"><metadataV2><location><lat>28.4069</lat><long>-96.7124</long><state>TX</state></location><date_established>2004-02-09</date_established><shef_id>SDRT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8773146" name="Matagorda City"><metadataV2><location><lat>28.7101</lat><long>-95.9140</long><state>TX</state></location><date_established>2012-10-11</date_established><shef_id>EMAT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8773259" name="Port Lavaca"><metadataV2><location><lat>28.6406</lat><long>-96.6098</long><state>TX</state></location><date_established>1989-01-28</date_established><shef_id>VCAT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8773701" name="Port O'Connor"><metadataV2><location><lat>28.4459</lat><long>-96.3960</long><state>TX</state></location><date_established>1989-01-28</date_established><shef_id>PCNT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8773767" name="Matagorda Bay Entrance Channel, TX"><metadataV2><location><lat>28.4269</lat><long>-96.3301</long><state>TX</state></location><date_established>2014-09-18</date_established><shef_id>MBET2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8774230" name="Aransas Wildlife Refuge, San Antonio Bay"><metadataV2><location><lat>28.2276</lat><long>-96.7966</long><state>TX</state></location><date_established>2012-10-09</date_established><shef_id>AWRT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8775237" name="Port Aransas"><metadataV2><location><lat>27.8397</lat><long>-97.0725</long><state>TX</state></location><date_established>1990-05-25</date_established><shef_id>RTAT2</shef_id><deployment_designation>Hydro,TCOON</deployment_designation></metadataV2><parameter DCP="2" name="Water Level" sensorID="B1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8775241" name="Aransas, Aransas Pass"><metadataV2><location><lat>27.8366</lat><long>-97.0391</long><state>TX</state></location><date_established>2016-08-01</date_established><shef_id>ANPT2</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="0"/></stationV2><stationV2 ID="8775244" name="Nueces Bay"><metadataV2><location><lat>27.8328</lat><long>-97.4859</long><state>TX</state></location><date_established>2010-01-25</date_established><shef_id>NUET2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="0"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8775296" name="USS Lexington"><metadataV2><location><lat>27.8117</lat><long>-97.3900</long><state>TX</state></location><date_established>2004-01-08</date_established><shef_id>TAQT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8775792" name="Packery Channel"><metadataV2><location><lat>27.6300</lat><long>-97.2367</long><state>TX</state></location><date_established>1988-11-30</date_established><shef_id>PACT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8775870" name="Bob Hall Pier, Corpus Christi"><metadataV2><location><lat>27.5808</lat><long>-97.2164</long><state>TX</state></location><date_established>1983-05-09</date_established><shef_id>MQTT2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8776139" name="S. Bird Island"><metadataV2><location><lat>27.4844</lat><long>-97.3181</long><state>TX</state></location><date_established>2003-12-17</date_established><shef_id>IRDT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8776604" name="Baffin Bay"><metadataV2><location><lat>27.2970</lat><long>-97.4052</long><state>TX</state></location><date_established>1998-11-17</date_established><shef_id>BABT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8777812" name="Rincon Del San Jose"><metadataV2><location><lat>26.8250</lat><long>-97.4917</long><state>TX</state></location><date_established>1990-03-04</date_established><shef_id>RSJT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8778490" name="Port Mansfield"><metadataV2><location><lat>26.5576</lat><long>-97.4257</long><state>TX</state></location><date_established>1962-08-11</date_established><shef_id>PMNT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="2" name="Water Level" sensorID="B1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8779280" name="Realitos Peninsula"><metadataV2><location><lat>26.2624</lat><long>-97.2853</long><state>TX</state></location><date_established>2009-02-23</date_established><shef_id>RLIT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="0"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8779748" name="South Padre Island CG Station"><metadataV2><location><lat>26.0725</lat><long>-97.1669</long><state>TX</state></location><date_established>1993-04-15</date_established><shef_id>PCGT2</shef_id><deployment_designation>TCOON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="2" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="8779749" name="SPI Brazos Santiago"><metadataV2><location><lat>26.0675</lat><long>-97.1547</long><state>TX</state></location><date_established>2016-08-01</date_established><shef_id>BZST2</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="8779770" name="Port Isabel"><metadataV2><location><lat>26.0612</lat><long>-97.2155</long><state>TX</state></location><date_established>1944-03-31</date_established><shef_id>PTIT2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9014070" name="Algonac"><metadataV2><location><lat>42.6210</lat><long>-82.5270</long><state>MI</state></location><date_established>1926-07-01</date_established><shef_id>AGCM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9014080" name="St. Clair State Police"><metadataV2><location><lat>42.8120</lat><long>-82.4860</long><state>MI</state></location><date_established>1971-01-01</date_established><shef_id>SCRM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9014087" name="Dry Dock"><metadataV2><location><lat>42.9453</lat><long>-82.4430</long><state>MI</state></location><date_established>1899-03-01</date_established><shef_id>PHXM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9014090" name="Mouth of the Black River"><metadataV2><location><lat>42.9747</lat><long>-82.4189</long><state>MI</state></location><date_established>1900-01-01</date_established><shef_id>MBRM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9014096" name="Dunn Paper"><metadataV2><location><lat>43.0033</lat><long>-82.4217</long><state>MI</state></location><date_established>1955-02-01</date_established><shef_id>DUPM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9014098" name="Fort Gratiot"><metadataV2><location><lat>43.0069</lat><long>-82.4225</long><state>MI</state></location><date_established>1970-01-01</date_established><shef_id>FTGM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9034052" name="St Clair Shores"><metadataV2><location><lat>42.4732</lat><long>-82.8792</long><state>MI</state></location><date_established>1968-03-01</date_established><shef_id>SCSM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9044020" name="Gibraltar"><metadataV2><location><lat>42.0917</lat><long>-83.1867</long><state>MI</state></location><date_established>1989-11-08</date_established><shef_id>GRTM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9044030" name="Wyandotte"><metadataV2><location><lat>42.2023</lat><long>-83.1475</long><state>MI</state></location><date_established>1930-05-01</date_established><shef_id>WDTM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9044036" name="Fort Wayne"><metadataV2><location><lat>42.2983</lat><long>-83.0933</long><state>MI</state></location><date_established>1970-01-01</date_established><shef_id>FWNM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9044049" name="Windmill Point"><metadataV2><location><lat>42.3575</lat><long>-82.9300</long><state>MI</state></location><date_established>1897-06-01</date_established><shef_id>WMPM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9052000" name="Cape Vincent"><metadataV2><location><lat>44.1303</lat><long>-76.3320</long><state>NY</state></location><date_established>1916-01-01</date_established><shef_id>CAVN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9052030" name="Oswego"><metadataV2><location><lat>43.4642</lat><long>-76.5118</long><state>NY</state></location><date_established>1990-06-06</date_established><shef_id>OSGN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9052058" name="Rochester"><metadataV2><location><lat>43.2690</lat><long>-77.6257</long><state>NY</state></location><date_established>1860-01-01</date_established><shef_id>RCRN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9052076" name="Olcott"><metadataV2><location><lat>43.3384</lat><long>-78.7273</long><state>NY</state></location><date_established>1967-01-01</date_established><shef_id>OCTN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9063007" name="Ashland Ave"><metadataV2><location><lat>43.1000</lat><long>-79.0599</long><state>NY</state></location><date_established>1957-06-01</date_established><shef_id>NGAN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9063009" name="American Falls"><metadataV2><location><lat>43.0811</lat><long>-79.0614</long><state>NY</state></location><date_established>1900-01-01</date_established><shef_id>AMFN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9063012" name="Niagara Intake"><metadataV2><location><lat>43.0769</lat><long>-79.0139</long><state>NY</state></location><date_established>1963-01-01</date_established><shef_id>NIAN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9063020" name="Buffalo"><metadataV2><location><lat>42.8774</lat><long>-78.8905</long><state>NY</state></location><date_established>1860-04-01</date_established><shef_id>BUFN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9063028" name="Sturgeon Point"><metadataV2><location><lat>42.6913</lat><long>-79.0473</long><state>NY</state></location><date_established>1989-12-05</date_established><shef_id>PSTN6</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9063038" name="Erie"><metadataV2><location><lat>42.1539</lat><long>-80.0925</long><state>PA</state></location><date_established>1959-04-01</date_established><shef_id>EREP1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9063053" name="Fairport"><metadataV2><location><lat>41.7597</lat><long>-81.2811</long><state>OH</state></location><date_established>1935-05-04</date_established><shef_id>FAIO1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9063063" name="Cleveland"><metadataV2><location><lat>41.5409</lat><long>-81.6355</long><state>OH</state></location><date_established>1860-01-01</date_established><shef_id>CNDO1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9063079" name="Marblehead"><metadataV2><location><lat>41.5436</lat><long>-82.7314</long><state>OH</state></location><date_established>1959-05-01</date_established><shef_id>MRHO1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9063085" name="Toledo"><metadataV2><location><lat>41.6936</lat><long>-83.4723</long><state>OH</state></location><date_established>1904-08-01</date_established><shef_id>THRO1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9063090" name="Fermi Power Plant"><metadataV2><location><lat>41.9600</lat><long>-83.2570</long><state>MI</state></location><date_established>1963-09-01</date_established><shef_id>FPPM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="2" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9075002" name="Lakeport"><metadataV2><location><lat>43.1417</lat><long>-82.4933</long><state>MI</state></location><date_established>1955-09-01</date_established><shef_id>LKPM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9075014" name="Harbor Beach"><metadataV2><location><lat>43.8464</lat><long>-82.6431</long><state>MI</state></location><date_established>1860-01-01</date_established><shef_id>HRBM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9075035" name="Essexville"><metadataV2><location><lat>43.6404</lat><long>-83.8468</long><state>MI</state></location><date_established>1977-08-01</date_established><shef_id>ESVM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9075065" name="Alpena"><metadataV2><location><lat>45.0630</lat><long>-83.4286</long><state>MI</state></location><date_established>2006-04-26</date_established><shef_id>LPNM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9075080" name="Mackinaw City"><metadataV2><location><lat>45.8000</lat><long>-84.7211</long><state>MI</state></location><date_established>1900-01-01</date_established><shef_id>MACM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9075099" name="De Tour Village"><metadataV2><location><lat>45.9925</lat><long>-83.8982</long><state>MI</state></location><date_established>1977-11-01</date_established><shef_id>DTLM4</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9076024" name="Rock Cut"><metadataV2><location><lat>46.2648</lat><long>-84.1912</long><state>MI</state></location><date_established>2001-10-26</date_established><shef_id>RCKM4</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9076027" name="West Neebish Island"><metadataV2><location><lat>46.2833</lat><long>-84.2050</long><state>MI</state></location><date_established>2006-10-19</date_established><shef_id>WNEM4</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9076033" name="Little Rapids"><metadataV2><location><lat>46.4858</lat><long>-84.3017</long><state>MI</state></location><date_established>2008-12-17</date_established><shef_id>LTRM4</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="0"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9076060" name="U.S. Slip"><metadataV2><location><lat>46.5008</lat><long>-84.3404</long><state>MI</state></location><date_established>1903-04-01</date_established><shef_id>USSM4</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9076070" name="S.W. Pier, St. Marys River"><metadataV2><location><lat>46.5010</lat><long>-84.3726</long><state>MI</state></location><date_established>1860-05-01</date_established><shef_id>SWPM4</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9087023" name="Ludington"><metadataV2><location><lat>43.9474</lat><long>-86.4416</long><state>MI</state></location><date_established>1895-11-01</date_established><shef_id>LDTM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9087031" name="Holland"><metadataV2><location><lat>42.7730</lat><long>-86.2128</long><state>MI</state></location><date_established>1894-06-01</date_established><shef_id>HLNM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9087044" name="Calumet Harbor"><metadataV2><location><lat>41.7297</lat><long>-87.5383</long><state>IL</state></location><date_established>1905-02-01</date_established><shef_id>CMTI2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9087057" name="Milwaukee"><metadataV2><location><lat>43.0020</lat><long>-87.8876</long><state>WI</state></location><date_established>1989-09-01</date_established><shef_id>MLQW3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9087068" name="Kewaunee, Lake Michigan"><metadataV2><location><lat>44.4640</lat><long>-87.5010</long><state>WI</state></location><date_established>1974-01-01</date_established><shef_id>KWNW3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9087069" name="Kewaunee MET"><metadataV2><location><lat>44.4650</lat><long>-87.4958</long><state>WI</state></location><date_established>2005-08-26</date_established><shef_id>KWNW3</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9087072" name="Sturgeon Bay Canal"><metadataV2><location><lat>44.7956</lat><long>-87.3143</long><state>WI</state></location><date_established>1905-01-01</date_established><shef_id>SBCW3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9087079" name="Green Bay"><metadataV2><location><lat>44.5410</lat><long>-88.0072</long><state>WI</state></location><date_established>1980-01-01</date_established><shef_id>GBWW3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9087088" name="Menominee"><metadataV2><location><lat>45.0959</lat><long>-87.5899</long><state>MI</state></location><date_established>2005-08-19</date_established><shef_id>MNMM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9087096" name="Port Inland"><metadataV2><location><lat>45.9699</lat><long>-85.8715</long><state>MI</state></location><date_established>1964-12-01</date_established><shef_id>PNLM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9099004" name="Point Iroquois"><metadataV2><location><lat>46.4845</lat><long>-84.6309</long><state>MI</state></location><date_established>1930-11-01</date_established><shef_id>PTIM4</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9099018" name="Marquette C.G."><metadataV2><location><lat>46.5460</lat><long>-87.3786</long><state>MI</state></location><date_established>1991-09-23</date_established><shef_id>MCGM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9099044" name="Ontonagon"><metadataV2><location><lat>46.8740</lat><long>-89.3242</long><state>MI</state></location><date_established>1959-08-01</date_established><shef_id>OGOM4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9099064" name="Duluth"><metadataV2><location><lat>46.7758</lat><long>-92.0920</long><state>MN</state></location><date_established>1860-04-01</date_established><shef_id>DULM5</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9099090" name="Grand Marais"><metadataV2><location><lat>47.7486</lat><long>-90.3413</long><state>MN</state></location><date_established>1966-01-01</date_established><shef_id>GDMM5</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="V1" status="1"/></stationV2><stationV2 ID="9410170" name="San Diego"><metadataV2><location><lat>32.7142</lat><long>-117.1736</long><state>CA</state></location><date_established>1906-01-26</date_established><shef_id>SDBC1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9410230" name="La Jolla"><metadataV2><location><lat>32.8669</lat><long>-117.2571</long><state>CA</state></location><date_established>1924-08-01</date_established><shef_id>LJAC1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9410647" name="Angels Gate"><metadataV2><location><lat>33.7158</lat><long>-118.2461</long><state>CA</state></location><date_established>2001-05-01</date_established><shef_id>AGXC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9410660" name="Los Angeles"><metadataV2><location><lat>33.7199</lat><long>-118.2729</long><state>CA</state></location><date_established>1923-11-28</date_established><shef_id>OHBC1</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9410665" name="Los Angeles Pier J"><metadataV2><location><lat>33.7330</lat><long>-118.1857</long><state>CA</state></location><date_established>2001-05-01</date_established><shef_id>PRJC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/></stationV2><stationV2 ID="9410666" name="Los Angeles Pier 400"><metadataV2><location><lat>33.7352</lat><long>-118.2413</long><state>CA</state></location><date_established>2001-05-01</date_established><shef_id>PFDC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/></stationV2><stationV2 ID="9410670" name="Los Angeles Pier F"><metadataV2><location><lat>33.7462</lat><long>-118.2151</long><state>CA</state></location><date_established>2001-05-01</date_established><shef_id>PFXC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9410689" name="Gerald Desmond Bridge Air Gap"><metadataV2><location><lat>33.7650</lat><long>-118.2200</long><state>CA</state></location><date_established>2004-10-01</date_established><shef_id></shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="9410690" name="Los Angeles Berth 161"><metadataV2><location><lat>33.7636</lat><long>-118.2654</long><state>CA</state></location><date_established>2001-05-01</date_established><shef_id>PXAC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/></stationV2><stationV2 ID="9410691" name="Los Angeles Badger Avenue Bridge"><metadataV2><location><lat>33.7663</lat><long>-118.2401</long><state>CA</state></location><date_established>2001-05-01</date_established><shef_id>BAXC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/></stationV2><stationV2 ID="9410692" name="Los Angeles Pier S"><metadataV2><location><lat>33.7683</lat><long>-118.2257</long><state>CA</state></location><date_established>2001-05-01</date_established><shef_id>PSXC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/></stationV2><stationV2 ID="9410840" name="Santa Monica"><metadataV2><location><lat>34.0083</lat><long>-118.5000</long><state>CA</state></location><date_established>1932-10-01</date_established><shef_id>ICAC1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9411340" name="Santa Barbara"><metadataV2><location><lat>34.4031</lat><long>-119.6928</long><state>CA</state></location><date_established>1974-02-26</date_established><shef_id>NTBC1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="3" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9411406" name="Oil Platform Harvest"><metadataV2><location><lat>34.4692</lat><long>-120.6819</long><state>CA</state></location><date_established>1992-05-13</date_established><shef_id>HRVC1</shef_id><deployment_designation>Global,TOPEX</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="0"/><parameter DCP="2" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9412110" name="Port San Luis"><metadataV2><location><lat>35.1688</lat><long>-120.7542</long><state>CA</state></location><date_established>1933-10-01</date_established><shef_id>PSLC1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9413450" name="Monterey"><metadataV2><location><lat>36.6050</lat><long>-121.8881</long><state>CA</state></location><date_established>1973-11-04</date_established><shef_id>MEYC1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="3" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9414290" name="San Francisco"><metadataV2><location><lat>37.8063</lat><long>-122.4659</long><state>CA</state></location><date_established>1854-06-30</date_established><shef_id>FTPC1</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="NT" status="1"/></stationV2><stationV2 ID="9414296" name="Pier 17, San Francisco Bay"><metadataV2><location><lat>37.8030</lat><long>-122.3971</long><state>CA</state></location><date_established>2013-10-09</date_established><shef_id>PXSC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Visibility" sensorID="O1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="9414304" name="San Francisco-Oakland Bay Bridge Air Gap"><metadataV2><location><lat>37.8044</lat><long>-122.3728</long><state>CA</state></location><date_established>2014-05-28</date_established><shef_id></shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Air Gap" sensorID="Q1" status="1"/></stationV2><stationV2 ID="9414311" name="San Francisco Pier 1"><metadataV2><location><lat>37.7980</lat><long>-122.3930</long><state>CA</state></location><date_established>2011-05-16</date_established><shef_id>PXOC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9414523" name="Redwood City"><metadataV2><location><lat>37.5068</lat><long>-122.2115</long><state>CA</state></location><date_established>1974-10-09</date_established><shef_id>RTYC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9414575" name="Coyote Creek"><metadataV2><location><lat>37.4650</lat><long>-122.0230</long><state>CA</state></location><date_established>1974-11-12</date_established><shef_id>RYAC1</shef_id><deployment_designation>COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9414750" name="Alameda"><metadataV2><location><lat>37.7717</lat><long>-122.3000</long><state>CA</state></location><date_established>1939-03-08</date_established><shef_id>AAMC1</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9414763" name="Oakland Berth 67"><metadataV2><location><lat>37.7950</lat><long>-122.2830</long><state>CA</state></location><date_established>2011-12-07</date_established><shef_id>LNDC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C2" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9414769" name="Oakland Middle Harbor"><metadataV2><location><lat>37.8006</lat><long>-122.3297</long><state>CA</state></location><date_established>2007-10-15</date_established><shef_id>OMHC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/></stationV2><stationV2 ID="9414776" name="Oakland Berth 34"><metadataV2><location><lat>37.8106</lat><long>-122.3000</long><state>CA</state></location><date_established>2011-03-09</date_established><shef_id>OKXC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9414797" name="Oakland Berth 38"><metadataV2><location><lat>37.8040</lat><long>-122.3417</long><state>CA</state></location><date_established>2013-04-08</date_established><shef_id>OBXC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Visibility" sensorID="O1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="9414847" name="Point Potrero Richmond"><metadataV2><location><lat>37.9058</lat><long>-122.3650</long><state>CA</state></location><date_established>2010-12-09</date_established><shef_id>PPXC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9414863" name="Richmond"><metadataV2><location><lat>37.9230</lat><long>-122.4096</long><state>CA</state></location><date_established>1947-07-15</date_established><shef_id>RCMC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9414958" name="Bolinas, Bolinas Lagoon"><metadataV2><location><lat>37.9078</lat><long>-122.6786</long><state>CA</state></location><date_established>1979-05-04</date_established><shef_id>BLZC1</shef_id><deployment_designation>COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9415020" name="Point Reyes"><metadataV2><location><lat>37.9961</lat><long>-122.9767</long><state>CA</state></location><date_established>1975-01-10</date_established><shef_id>PRYC1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9415102" name="Martinez-Amorco Pier"><metadataV2><location><lat>38.0346</lat><long>-122.1252</long><state>CA</state></location><date_established>2009-03-01</date_established><shef_id>MZXC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Visibility" sensorID="O1" status="1"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9415115" name="Pittsburg, Suisun Bay"><metadataV2><location><lat>38.0416</lat><long>-121.8870</long><state>CA</state></location><date_established>2011-03-08</date_established><shef_id>PSBC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9415118" name="Union Pacific Rail Road Bridge"><metadataV2><location><lat>38.0383</lat><long>-122.1205</long><state>CA</state></location><date_established>2008-08-21</date_established><shef_id>UPBC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="0"/></stationV2><stationV2 ID="9415141" name="Davis Point"><metadataV2><location><lat>38.0567</lat><long>-122.2596</long><state>CA</state></location><date_established>2011-03-05</date_established><shef_id>DPXC1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9415144" name="Port Chicago"><metadataV2><location><lat>38.0560</lat><long>-122.0395</long><state>CA</state></location><date_established>1976-06-28</date_established><shef_id>PCOC1</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9416841" name="Arena Cove"><metadataV2><location><lat>38.9146</lat><long>-123.7111</long><state>CA</state></location><date_established>1978-04-09</date_established><shef_id>ANVC1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9418767" name="North Spit"><metadataV2><location><lat>40.7663</lat><long>-124.2172</long><state>CA</state></location><date_established>1977-08-16</date_established><shef_id>HBYC1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="3" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9419750" name="Crescent City"><metadataV2><location><lat>41.7456</lat><long>-124.1844</long><state>CA</state></location><date_established>1933-04-10</date_established><shef_id>CECC1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9431647" name="Port Orford"><metadataV2><location><lat>42.7390</lat><long>-124.4983</long><state>OR</state></location><date_established>1924-08-07</date_established><shef_id>PORO3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9432780" name="Charleston"><metadataV2><location><lat>43.3450</lat><long>-124.3220</long><state>OR</state></location><date_established>1964-08-27</date_established><shef_id>CHAO3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9435380" name="South Beach"><metadataV2><location><lat>44.6254</lat><long>-124.0449</long><state>OR</state></location><date_established>1967-01-28</date_established><shef_id>SBEO3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9437540" name="Garibaldi"><metadataV2><location><lat>45.5545</lat><long>-123.9189</long><state>OR</state></location><date_established>1866-08-11</date_established><shef_id>TLBO3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9439040" name="Astoria"><metadataV2><location><lat>46.2073</lat><long>-123.7683</long><state>OR</state></location><date_established>1853-07-10</date_established><shef_id>ASTO3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9439099" name="Wauna"><metadataV2><location><lat>46.1617</lat><long>-123.4089</long><state>OR</state></location><date_established>1940-11-05</date_established><shef_id>WAUO3</shef_id><deployment_designation>PORTS,Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9439201" name="St Helens"><metadataV2><location><lat>45.8633</lat><long>-122.7962</long><state>OR</state></location><date_established>1877-09-11</date_established><shef_id>SHNO3</shef_id><deployment_designation>PORTS,Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9440083" name="Vancouver"><metadataV2><location><lat>45.6317</lat><long>-122.6970</long><state>WA</state></location><date_established>1938-09-14</date_established><shef_id>VAPW1</shef_id><deployment_designation>Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9440422" name="Longview"><metadataV2><location><lat>46.1061</lat><long>-122.9542</long><state>WA</state></location><date_established>1985-03-23</date_established><shef_id>LOPW1</shef_id><deployment_designation>NWLON,PORTS,Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9440569" name="Skamokawa"><metadataV2><location><lat>46.2703</lat><long>-123.4565</long><state>WA</state></location><date_established>1981-07-01</date_established><shef_id>SKAW1</shef_id><deployment_designation>PORTS,Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9440581" name="Cape Disappointment"><metadataV2><location><lat>46.2810</lat><long>-124.0463</long><state>WA</state></location><date_established>2015-04-07</date_established><shef_id>CPTW1</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9440910" name="Toke Point"><metadataV2><location><lat>46.7075</lat><long>-123.9669</long><state>WA</state></location><date_established>1922-02-20</date_established><shef_id>TOKW1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9441102" name="Westport"><metadataV2><location><lat>46.9043</lat><long>-124.1051</long><state>WA</state></location><date_established>1982-06-07</date_established><shef_id>WPTW1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="3" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9442396" name="La Push"><metadataV2><location><lat>47.9133</lat><long>-124.6370</long><state>WA</state></location><date_established>1924-12-19</date_established><shef_id>LAPW1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="3" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9443090" name="Neah Bay"><metadataV2><location><lat>48.3703</lat><long>-124.6019</long><state>WA</state></location><date_established>1934-07-23</date_established><shef_id>NEAW1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="2" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9444090" name="Port Angeles"><metadataV2><location><lat>48.1247</lat><long>-123.4411</long><state>WA</state></location><date_established>1975-08-30</date_established><shef_id>PTAW1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9444900" name="Port Townsend"><metadataV2><location><lat>48.1129</lat><long>-122.7595</long><state>WA</state></location><date_established>1971-12-31</date_established><shef_id>PTWW1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9446482" name="Tacoma MET"><metadataV2><location><lat>47.2760</lat><long>-122.4180</long><state>WA</state></location><date_established>1996-07-22</date_established><shef_id>TCMW1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/></stationV2><stationV2 ID="9446484" name="Tacoma"><metadataV2><location><lat>47.2700</lat><long>-122.4130</long><state>WA</state></location><date_established>1996-07-22</date_established><shef_id>TCNW1</shef_id><deployment_designation>PORTS,Global</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9447130" name="Seattle"><metadataV2><location><lat>47.6026</lat><long>-122.3393</long><state>WA</state></location><date_established>1899-01-01</date_established><shef_id>EBSW1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9449419" name="Cherry Point South Dock Met"><metadataV2><location><lat>48.8600</lat><long>-122.7550</long><state>WA</state></location><date_established>2007-12-04</date_established><shef_id>CPMW1</shef_id><deployment_designation>PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/></stationV2><stationV2 ID="9449424" name="Cherry Point"><metadataV2><location><lat>48.8633</lat><long>-122.7580</long><state>WA</state></location><date_established>1971-11-07</date_established><shef_id>CHYW1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="3" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="3" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9449880" name="Friday Harbor"><metadataV2><location><lat>48.5453</lat><long>-123.0129</long><state>WA</state></location><date_established>1932-01-25</date_established><shef_id>FRDW1</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="3" name="Winds" sensorID="C1" status="1"/><parameter DCP="3" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9450460" name="Ketchikan"><metadataV2><location><lat>55.3319</lat><long>-131.6261</long><state>AK</state></location><date_established>1918-10-01</date_established><shef_id>KECA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="2" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9451054" name="Port Alexander"><metadataV2><location><lat>56.2466</lat><long>-134.6477</long><state>AK</state></location><date_established>1924-04-10</date_established><shef_id>PLXA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="2" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9451600" name="Sitka"><metadataV2><location><lat>57.0517</lat><long>-135.3420</long><state>AK</state></location><date_established>1938-05-19</date_established><shef_id>ITKA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9452210" name="Juneau"><metadataV2><location><lat>58.2988</lat><long>-134.4106</long><state>AK</state></location><date_established>1936-05-14</date_established><shef_id>JNEA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9452400" name="Skagway"><metadataV2><location><lat>59.4508</lat><long>-135.3280</long><state>AK</state></location><date_established>1943-08-16</date_established><shef_id>SKTA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9452634" name="Elfin Cove"><metadataV2><location><lat>58.1947</lat><long>-136.3469</long><state>AK</state></location><date_established>1938-05-13</date_established><shef_id>ELFA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9453220" name="Yakutat, Yakutat Bay"><metadataV2><location><lat>59.5483</lat><long>-139.7331</long><state>AK</state></location><date_established>1940-04-24</date_established><shef_id>YATA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9454050" name="Cordova"><metadataV2><location><lat>60.5583</lat><long>-145.7550</long><state>AK</state></location><date_established>1949-05-14</date_established><shef_id>CRVA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="2" name="Conductivity" sensorID="G1" status="1"/></stationV2><stationV2 ID="9454240" name="Valdez"><metadataV2><location><lat>61.1242</lat><long>-146.3631</long><state>AK</state></location><date_established>1964-08-15</date_established><shef_id>VDZA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9455090" name="Seward"><metadataV2><location><lat>60.1200</lat><long>-149.4267</long><state>AK</state></location><date_established>1925-05-01</date_established><shef_id>SWLA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/></stationV2><stationV2 ID="9455500" name="Seldovia"><metadataV2><location><lat>59.4405</lat><long>-151.7199</long><state>AK</state></location><date_established>1964-05-24</date_established><shef_id>OVIA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9455760" name="Nikiski"><metadataV2><location><lat>60.6833</lat><long>-151.3980</long><state>AK</state></location><date_established>1971-05-21</date_established><shef_id>NKTA2</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9455920" name="Anchorage"><metadataV2><location><lat>61.2375</lat><long>-149.8904</long><state>AK</state></location><date_established>1964-04-24</date_established><shef_id>ANTA2</shef_id><deployment_designation>NWLON,PORTS</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9457292" name="Kodiak Island"><metadataV2><location><lat>57.7303</lat><long>-152.5139</long><state>AK</state></location><date_established>1984-07-10</date_established><shef_id>KDAA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9457804" name="Alitak"><metadataV2><location><lat>56.8974</lat><long>-154.2480</long><state>AK</state></location><date_established>1929-05-31</date_established><shef_id>ALIA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="NT" status="1"/></stationV2><stationV2 ID="9459450" name="Sand Point"><metadataV2><location><lat>55.3317</lat><long>-160.5043</long><state>AK</state></location><date_established>1972-09-10</date_established><shef_id>SNDA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9459881" name="King Cove"><metadataV2><location><lat>55.0599</lat><long>-162.3261</long><state>AK</state></location><date_established>1917-08-14</date_established><shef_id>KGCA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9461380" name="Adak Island"><metadataV2><location><lat>51.8633</lat><long>-176.6320</long><state>AK</state></location><date_established>1943-08-21</date_established><shef_id>ADKA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9461710" name="Atka"><metadataV2><location><lat>52.2320</lat><long>-174.1726</long><state>AK</state></location><date_established>2006-08-01</date_established><shef_id>ATKA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9462450" name="Nikolski"><metadataV2><location><lat>52.9406</lat><long>-168.8713</long><state>AK</state></location><date_established>2006-06-28</date_established><shef_id>OLSA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="2" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="0"/><parameter DCP="2" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9462620" name="Unalaska"><metadataV2><location><lat>53.8792</lat><long>-166.5403</long><state>AK</state></location><date_established>1955-05-07</date_established><shef_id>UNLA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9463502" name="Port Moller"><metadataV2><location><lat>55.9857</lat><long>-160.5739</long><state>AK</state></location><date_established>1960-09-11</date_established><shef_id>PMOA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="0"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="0"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="0"/><parameter DCP="1" name="Water Level" sensorID="N1" status="0"/></stationV2><stationV2 ID="9464212" name="Village Cove, St Paul Island"><metadataV2><location><lat>57.1253</lat><long>-170.2852</long><state>AK</state></location><date_established>1977-06-08</date_established><shef_id>VCVA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9468333" name="Unalakleet"><metadataV2><location><lat>63.8714</lat><long>-160.7843</long><state>AK</state></location><date_established>1977-06-30</date_established><shef_id>ULRA2</shef_id><deployment_designation>NWLON,Hydro</deployment_designation></metadataV2><parameter DCP="3" name="Winds" sensorID="C2" status="1"/><parameter DCP="3" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9468756" name="Nome, Norton Sound"><metadataV2><location><lat>64.4946</lat><long>-165.4396</long><state>AK</state></location><date_established>1944-06-30</date_established><shef_id>NMTA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9491094" name="Red Dog Dock"><metadataV2><location><lat>67.5758</lat><long>-164.0644</long><state>AK</state></location><date_established>2003-08-21</date_established><shef_id>RDDA2</shef_id><deployment_designation>NWLON,Hydro</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9497645" name="Prudhoe Bay"><metadataV2><location><lat>70.4114</lat><long>-148.5317</long><state>AK</state></location><date_established>1990-07-17</date_established><shef_id>PRDA2</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9751364" name="Christiansted Harbor, St Croix"><metadataV2><location><lat>17.7477</lat><long>-64.6984</long><state>VI</state></location><date_established>1981-02-10</date_established><shef_id>CHSV3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9751381" name="Lameshur Bay, St John"><metadataV2><location><lat>18.3182</lat><long>-64.7242</long><state>VI</state></location><date_established>1983-02-21</date_established><shef_id>LAMV3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9751401" name="Lime Tree Bay. St. Croix"><metadataV2><location><lat>17.6947</lat><long>-64.7538</long><state>VI</state></location><date_established>1977-10-13</date_established><shef_id>LTBV3</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="Y1" status="1"/></stationV2><stationV2 ID="9752235" name="Culebra"><metadataV2><location><lat>18.3009</lat><long>-65.3025</long><state>PR</state></location><date_established>2005-08-19</date_established><shef_id>CLBP4</shef_id><deployment_designation></deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9752619" name="Isabel Segunda, Vieques Island"><metadataV2><location><lat>18.1525</lat><long>-65.4438</long><state>PR</state></location><date_established>2007-09-13</date_established><shef_id>VQSP4</shef_id><deployment_designation>COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="0"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="0"/></stationV2><stationV2 ID="9753216" name="Fajardo"><metadataV2><location><lat>18.3352</lat><long>-65.6310</long><state>PR</state></location><date_established>1964-02-17</date_established><shef_id>FRDP4</shef_id><deployment_designation>COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="0"/><parameter DCP="1" name="Winds" sensorID="C1" status="0"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="0"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="0"/><parameter DCP="1" name="Humidity" sensorID="R1" status="0"/></stationV2><stationV2 ID="9754228" name="Yabucoa Harbor"><metadataV2><location><lat>18.0551</lat><long>-65.8330</long><state>PR</state></location><date_established>1974-04-10</date_established><shef_id>YABP4</shef_id><deployment_designation>COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="0"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="0"/><parameter DCP="1" name="Humidity" sensorID="R1" status="1"/></stationV2><stationV2 ID="9755371" name="San Juan, La Puntilla, San Juan Bay"><metadataV2><location><lat>18.4592</lat><long>-66.1164</long><state>PR</state></location><date_established>1962-03-04</date_established><shef_id>SJNP4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9757809" name="Arecibo"><metadataV2><location><lat>18.4806</lat><long>-66.7025</long><state>PR</state></location><date_established>2007-03-05</date_established><shef_id>AROP4</shef_id><deployment_designation>COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="0"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9759110" name="Magueyes Island"><metadataV2><location><lat>17.9700</lat><long>-67.0464</long><state>PR</state></location><date_established>1954-12-01</date_established><shef_id>MGIP4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Water Level" sensorID="A1" status="1"/><parameter DCP="1" name="Winds" sensorID="C1" status="1"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/></stationV2><stationV2 ID="9759938" name="Mona Island"><metadataV2><location><lat>18.0899</lat><long>-67.9385</long><state>PR</state></location><date_established>2006-09-15</date_established><shef_id>MISP4</shef_id><deployment_designation>NWLON</deployment_designation></metadataV2><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2><stationV2 ID="9761115" name="Barbuda"><metadataV2><location><lat>17.5908</lat><long>-61.8206</long><state>Antigua and Barbuda</state></location><date_established>2011-05-24</date_established><shef_id>BARA9</shef_id><deployment_designation>COASTAL</deployment_designation></metadataV2><parameter DCP="1" name="Winds" sensorID="C1" status="0"/><parameter DCP="1" name="Air Temp" sensorID="D1" status="1"/><parameter DCP="1" name="Water Temp" sensorID="E1" status="1"/><parameter DCP="1" name="Air Pressure" sensorID="F1" status="1"/><parameter DCP="1" name="Water Level" sensorID="N1" status="1"/></stationV2></stationsV2></ActiveStationsV2>
2
+
3
+
4
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cpdundon_cli_app_take3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher P. Dundon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-05-07 00:00:00.000000000 Z
11
+ date: 2018-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -90,11 +90,14 @@ files:
90
90
  - lib/config.rb
91
91
  - lib/cpdundon_cli_app_take3.rb
92
92
  - lib/cpdundon_cli_app_take3/version.rb
93
+ - lib/get_active_stations.rb
93
94
  - lib/get_water_level.rb
94
95
  - lib/get_wind.rb
95
96
  - lib/gmt.rb
96
97
  - lib/noaa_pull_NYH
97
98
  - lib/noaa_soap.rb
99
+ - lib/station.rb
100
+ - run_support/responseStations.xml
98
101
  homepage: https://github.com/cpdundon/cpdundon_cli_app_take3
99
102
  licenses:
100
103
  - MIT