Giter VIP home page Giter VIP logo

Comments (2)

KubaSzostak avatar KubaSzostak commented on September 25, 2024 1

Hi @ShinNoNoir, I checked the layer you provided. It has a geometry of type Point, not PointZM. In that case if you try to read Z coordinate from geometry then you get NaN. There is a valid Z value, but it's not a coordinate, but an attribute.

That's how it looks in QGIS:
image

You can read the same data using C# code:

var features = Shapefile.ReadAllFeatures("2021_Paspunten_BM5.shp");
foreach (var feature in features)
{
    Console.WriteLine($"Geometry: {feature.Geometry}");
    Console.WriteLine($"XYMZ: {feature.Geometry.Coordinate.X} {feature.Geometry.Coordinate.Y} {feature.Geometry.Coordinate.M} {feature.Geometry.Coordinate.Z}");
                Console.WriteLine("Attributes:");
    foreach( var name in feature.Attributes.GetNames())
    {
        var value = feature.Attributes[name];
        Console.WriteLine($"  {name}: {value}");
    }
    Console.WriteLine();
}

Output:

Geometry: POINT (172354.84 534578.751)
XYMZ: 172354.84 534578.751 NaN NaN
Attributes:
  Puntnummer: 580_1010
  X: 172354.84
  Y: 534578.751
  Z: -3.055
  Bron: 2021_paspuntcoordinaten_05_80_hrl
  POINT_X: 
  POINT_Y: 

...

I hope this explanation solves your issue. If you need more support on this issue provide further details, please.

from nettopologysuite.io.esri.

ShinNoNoir avatar ShinNoNoir commented on September 25, 2024

Thank you for your time. This explains the issue I was having back then.

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.