Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active November 13, 2021 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/e8b5629e0277795abe9a7c699fdfbe76 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/e8b5629e0277795abe9a7c699fdfbe76 to your computer and use it in GitHub Desktop.
Convert JSON to GeoJSON using C#
// Specify conversion settings if necessary. It is optional.
ConversionOptions options = null;
// This options assigns Wgs84 to the destination layer.
// Conversion may throw error If destination layer does not support the Wgs84 spatial reference. So need to check.
if (Drivers.Shapefile.SupportsSpatialReferenceSystem(SpatialReferenceSystem.Wgs84))
{
options = new ConversionOptions()
{
DestinationSpatialReferenceSystem = SpatialReferenceSystem.Wgs84,
};
}
// Convert file format from JSON to GeoJSON.
VectorLayer.Convert("source.geojson", Drivers.GeoJson, "destination.geojson", Drivers.GeoJson, options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment