Browse our Products
Aspose.GIS for .NET 18.7 Release Notes
This page contains release notes information for Aspose.GIS for .NET 18.7.
Major Features
Major features and improvements in this release:
- Reading data in GML format
- Reading data in ESRI File Geodatabase format
List of Improvements
| Key | Summary | Category |
|---|---|---|
| GISNET-174 | Geography Markup Language (GML) | New Feature |
| GISNET-188 | ESRI File Geodatabase (FileGDB) | New Feature |
Public API and Backward Incompatible Changes
Change in members of Drivers for working with vector layers
| C# (before v18.7) |
|---|
| void HandleDriver(Driver driver) { Console.WriteLine(driver.CanCreate);Console.WriteLine(driver.CanOpen);using (var layer = driver.Create(“path”)){// work with layer}using (var layer = driver.Open(“path”)){// work with layer}} |
| C# (since v18.7) |
| void HandleDriver(Driver driver) { Console.WriteLine(driver.CanCreateLayers);Console.WriteLine(driver.CanOpenLayers);using (var layer = driver.CreateLayer(“path”)){// work with layer}using (var layer = driver.OpenLayer(“path”)){// work with layer}} |