コード例 #1
0
        public static string SaveKMLFile(string savePath, string fileName, KMLDocument document)
        {
            if (string.IsNullOrEmpty(savePath))
            {
                throw new ArgumentException(typeof(KMLExportHelper).Name + ":" + System.Reflection.MethodBase.GetCurrentMethod().Name + " - Path is required");
            }
            if (string.IsNullOrEmpty(fileName))
            {
                throw new ArgumentException(typeof(KMLExportHelper).Name + ":" + System.Reflection.MethodBase.GetCurrentMethod().Name + " - Filename is required");
            }

            string savedFileName = string.Empty;

            if (document != null && document.HasData)
            {
                if (!savePath.EndsWith(Path.DirectorySeparatorChar.ToString()))
                {
                    savePath += Path.DirectorySeparatorChar;
                }

                if (!Directory.Exists(savePath))
                {
                    Directory.CreateDirectory(savePath);
                }

                if (!fileName.EndsWith(EXTENSION))
                {
                    fileName += EXTENSION;
                }

                savedFileName = savePath + fileName;
                File.WriteAllText(savedFileName, document.ToString());
            }
            return(savedFileName);
        }
コード例 #2
0
        public static IEnumerable <KMLDocument> GenerateKMLDocumentObjects(IEnumerable <IKMLPlacemark> data, int?pointLimit = null)
        {
            pointLimit = pointLimit ?? DEFAULT_POINTLIMIT;
            if (data == null || !data.Any(x => x.HasData))
            {
                throw new ArgumentException(typeof(KMLExportHelper).Name + ":" + System.Reflection.MethodBase.GetCurrentMethod().Name + " - Data is null");
            }

            List <KMLDocument>  retVal     = new List <KMLDocument>();
            KMLDocument         document   = new KMLDocument();
            List <KMLPlacemark> placemarks = new List <KMLPlacemark>();

            foreach (IKMLPlacemark pm in data)
            {
                document.AddPlacemark(pm.Name, pm.Description, pm.Latitude, pm.Longitude, pm.Altitude);

                if (document.HasPlacemarks && document.Placemarks.Count() >= pointLimit)
                {
                    retVal.Add(document);
                    document = new KMLDocument();
                }
            }
            if (document.HasData)
            {
                retVal.Add(document);
            }
            return(retVal);
        }
コード例 #3
0
        public static IEnumerable <KMLDocument> GenerateKMLDocumentObjects(DataTable data, string nameCol, string descriptionCol,
                                                                           string latitudeCol, string longitudeCol, string altitudeCol = null, int?pointLimit = null)
        {
            pointLimit = pointLimit ?? DEFAULT_POINTLIMIT;
            if (data == null)
            {
                throw new ArgumentException(typeof(KMLExportHelper).Name + ":" + System.Reflection.MethodBase.GetCurrentMethod().Name + " - Table is null");
            }
            if (string.IsNullOrEmpty(nameCol))
            {
                throw new ArgumentException(typeof(KMLExportHelper).Name + ":" + System.Reflection.MethodBase.GetCurrentMethod().Name + " - Name column is required");
            }
            if (!data.Columns.Contains(nameCol))
            {
                throw new ArgumentException(typeof(KMLExportHelper).Name + ":" + System.Reflection.MethodBase.GetCurrentMethod().Name + " - Name column does not exist in table");
            }

            if (string.IsNullOrEmpty(latitudeCol))
            {
                throw new ArgumentException(typeof(KMLExportHelper).Name + ":" + System.Reflection.MethodBase.GetCurrentMethod().Name + " - Latitude column is required");
            }
            if (!data.Columns.Contains(latitudeCol))
            {
                throw new ArgumentException(typeof(KMLExportHelper).Name + ":" + System.Reflection.MethodBase.GetCurrentMethod().Name + " - Latitude column does not exist in table");
            }

            if (string.IsNullOrEmpty(longitudeCol))
            {
                throw new ArgumentException(typeof(KMLExportHelper).Name + ":" + System.Reflection.MethodBase.GetCurrentMethod().Name + " - Longitude column is required");
            }
            if (!data.Columns.Contains(longitudeCol))
            {
                throw new ArgumentException(typeof(KMLExportHelper).Name + ":" + System.Reflection.MethodBase.GetCurrentMethod().Name + " - Longitude column does not exist in table");
            }

            List <KMLDocument> retVal   = new List <KMLDocument>();
            KMLDocument        document = null;

            if (data != null && data.Rows.Count > 0)
            {
                document = new KMLDocument();
                List <KMLPlacemark> placemarks = new List <KMLPlacemark>();
                foreach (DataRow row in data.Rows)
                {
                    document.AddPlacemark(
                        row[nameCol].ToString(),
                        (!string.IsNullOrEmpty(descriptionCol) && data.Columns.Contains(descriptionCol) ? row[descriptionCol].ToString() : null),
                        Double.TryParse(row[latitudeCol].ToString(), out double tempLatitude) ? tempLatitude : (double?)null,
                        Double.TryParse(row[longitudeCol].ToString(), out double tempLongitude) ? tempLongitude : (double?)null,
                        (!string.IsNullOrEmpty(altitudeCol) && data.Columns.Contains(altitudeCol) &&
                         Double.TryParse(row[altitudeCol].ToString(), out double tempAltitude)) ? tempAltitude : (double?)null);

                    if (document.HasPlacemarks && document.Placemarks.Count() >= pointLimit)
                    {
                        retVal.Add(document);
                        document = new KMLDocument();
                    }
                }
                if (document.HasData)
                {
                    retVal.Add(document);
                }
            }
            return(retVal);
        }