GithubHelp home page GithubHelp logo

Comments (2)

karimbahgat avatar karimbahgat commented on July 28, 2024

Not sure which part of 1.2.11 caused this change, but the fact that it worked in older versions was probably more of an error/oversight. The code you showed defines the shapefile as POINTZ, but in the point() method it also needed to set the shapeType to POINTZ (the default is POINT). The fact that you specified a z-value didn't change the shapeType (it probably should have). Thus when it saved the file it only wrote the xy values, and hence no z-value when you read it back in. I think version 1.2.3 did not notice when you wrote a shapeType that did not match with the shapefile, but now it raises an exception.

Nevertheless, since it's easy to forget setting the shapeType argument, as of 0c18209 there is a designated method for each shape type, so there is no longer the need for a separate shapeType argument. So in your case, you would simply change outShp.point(10, 10, 10) to outShp.pointz(10, 10, 10).

from pyshp.

domlysz avatar domlysz commented on July 28, 2024

Thank you for the feeback

from pyshp.

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.