public SouthamptonVTSDataSource(SouthamptonVTSStation station)
 {
     this.station = station;
 }
        /// <summary>
        /// Gets the path the data file on the server.
        /// </summary>
        /// <param name="station">The station that the data will be requested for.</param>
        /// <returns></returns>
        private static string GetFileUri(SouthamptonVTSStation station)
        {
            switch (station)
            {
                case SouthamptonVTSStation.Bramble:
                    return "D:\\ftp\\southampton\\Bramble.xml";

                case SouthamptonVTSStation.Dockhead:
                default:
                    return "D:\\ftp\\southampton\\Sotonmet.xml";
            }
        }