Giter VIP home page Giter VIP logo

Comments (6)

anthea-wu avatar anthea-wu commented on June 24, 2024

About wkt, I tried both use EPSG:3826 and EPSG:4326, but no one work.

I tried this below and not work too:

...
var geometry = wktReader.Read(wkt) as Polygon;
...

from nettopologysuite.io.esri.

anthea-wu avatar anthea-wu commented on June 24, 2024

I finally fixed this issue by separating polygon writer from original polygon writer, who use MultiPolygon at begin and cause this error I guessed.
Now, I have MultiPolygonWriter ( original PolygonWriter ) and PolygonWriter ( new ), the newer one will only create the type Polygon in Geometry, and other polygon types will be processed by the original writer.

If anyone need the change I made, here is the repo: https://github.com/anthea-wu/NetTopologySuite.IO.Esri

Hopes it can be helpful 😃

from nettopologysuite.io.esri.

kronetix avatar kronetix commented on June 24, 2024

from nettopologysuite.io.esri.

DGuidi avatar DGuidi commented on June 24, 2024

please consider that NetTopologySuite.IO.Esri is in heavily development mode, so maybe you can give a try to the more stable NetTopologySuite.IO.Shapefile

from nettopologysuite.io.esri.

DGuidi avatar DGuidi commented on June 24, 2024

I would like to leave open the issue, so we can track the problem when the IO.ESRI API will be stable enough to check what happens

from nettopologysuite.io.esri.

DGuidi avatar DGuidi commented on June 24, 2024

I checked a bit the code you posted and - no bad feelings - the code that checks if the geometry is a polygon or a myltipolygon is flawed.
There is no need for an additional writer because the API expects (at this stage, at least) ALWAYS multigeometries to be written.

So here how you can handle your use case:

var geometry = wktReader.Read(...
var poly = (Polygon)geometry;
var mpoly = poly.Factory.CreateMultiPolygon(new[] {poly});
geometry = mpoly;

A similar handling is done in a test for a single-linestring write

Actually it is not clear to me how the API works this way, but I suppose that maybe can be improved once the API will be considered stable enough.

@KubaSzostak FYI, I closed the issue but of course feel free to add your own thoughts

from nettopologysuite.io.esri.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.