Aspose.GIS使用教程:使用 C# 将 JSON 转换为 GeoJSON

335 阅读1分钟

在某些情况下,您可能需要将 JSON 文件转换为 GeoJSON。如果您有多个文件,以编程方式执行此任务将被证明是有帮助的。为此,本文将教您如何使用 C# 将 JSON 文件转换为 GeoJSON。

Aspose.GIS for .NET API 允许您处理以各种文件格式存储的地理空间数据。它使您能够渲染地图以及创建、读取和转换地理数据,而无需任何其他软件。

你可以点击这里下载Aspose.GIS最新版测试体验。

用于将 JSON 转换为 GeoJSON 的 C# API

Aspose.GIS for .NET  API 允许您渲染地图并创建、读取和转换地理数据,而无需额外的软件。

使用 C# 将 JSON 转换为 GeoJSON

以下是将 JSON 转换为 GeoJSON 的步骤。

  • 创建ConversionOptions类的实例。
  • 使用DestinationSpatialReferenceSystem属性将SpatialReferenceSystem.Wgs84分配给ConversionOptions对象。
  • 使用VectorLayer.Convert(string sourcePath, FileDriver sourceDriver, string destinationPath, FileDriver destinationDriver, ConversionOptions options)方法将 JSON 转换为 GeoJSON 。

以下示例代码显示了如何使用 C# 将 JSON 转换为 GeoJSON\

// 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);