我有一个带有 EPSG:32749 的 shapefile,它将被插入 Oracle 数据库并显示在 geoserver 中。在此之前,我想使用点空间库将我的 shapefile 重新投影到 ESPG:4326,这是我的代码
var EXTRACTED_NAME = Server.MapPath("~/upload/shp/example/");
string shapeFilePath = @"\example.shp";
shapeFilePath = EXTRACTED_NAME + shapeFilePath;
Shapefile indexMapFile = Shapefile.OpenFile(shapeFilePath);
indexMapFile.Reproject(KnownCoordinateSystems.Geographic.World.WGS1984);
但是当我在geoserver中预览时,我的shapefile显示是这样的,当原来的shapefile是这样的
我的问题是,为什么重新投影到 EPSG 4326 的 shapefile 与原始文件不同?
谢谢