sharpkml icon indicating copy to clipboard operation
sharpkml copied to clipboard

SharpKML is an implementation of the Open Geospatial Consortium (OGC) KML 2.2 standard developed in C#, able to read/write both KML files and KMZ files.

Results 12 sharpkml issues
Sort by recently updated
recently updated
newest added

Hi! We are getting an odd behavior while parsing files with leading commas and without altitude values. **current behavior:** What the parser is doing is returning a geometry with a...

Assume we have the following KML extract: ``` security xxx ESP ITA ``` the models are: ```csharp [KmlElement(nameof(FeatureExtension), Constants.XmlNamespace)] public class FeatureExtension : Element { [KmlElement("security", Constants.XmlNamespace)] public Security? Security...

A call to **KmzFile.Create(kml)** return the error for looking at System.IO.Compression, Version=4.2.0.0 It worked in the past but now I have a new PC and I have installed only Visual...

I'm trying to use sharpkml to add simple data forms to my kml doc. The setup for the kml Schema and SimpleField name: ``` <b>Property</b> <b>State</b> ``` The reference for...

I need to traverse the DOM created by importing a KML file. In my case I have a hierarchy of folders that needs to be maintained. However, SharpKml appears only...

Parser.Parse support param named namespaces,but KmlFile.Load and KmzFile.GetDefaultKmlFile() donnot support param named namespaces。It is a little inconvenient。

Hello, I have a geometry with many points, and need to get the boundingBox. However, when I call Feature.CalculateBounds() it returns null. Example: (1000 points in datapoints) ``` var track...