Ejemplo n.º 1
0
        /// <summary>
        /// Writes the routerdb to a shapefile.
        /// </summary>
        public static void WriteToShape(this RouterDb routerDb, string fileName, params Profile[] profiles)
        {
            var writer = new Writer.ShapeFileWriter(routerDb, profiles, fileName);

            writer.Run();
        }
        /// <summary>
        /// Writes the routerdb to a shapefile.
        /// </summary>
        public static void WriteToShape(this RouterDb routerDb, string fileName)
        {
            var writer = new Writer.ShapeFileWriter(routerDb, fileName);

            writer.Run(CancellationToken.None);
        }