Git Product home page Git Product logo

Comments (6)

manuelbieh avatar manuelbieh commented on July 17, 2024

That is a legitimate question. I copied the algorithm from somewhere I can't remember. Seems to be buggy. I have just found this one:
https://github.com/substack/point-in-polygon/blob/master/index.js

I think I will have a look if this one works better shortly.

from geolib.

manuelbieh avatar manuelbieh commented on July 17, 2024

Ok, seems to have the same issue ;)
https://github.com/substack/point-in-polygon/issues/2

So this one seems to be better:
https://github.com/mikolalysenko/robust-point-in-polygon
(holy crap, what a code!)

from geolib.

deepaksisodiya avatar deepaksisodiya commented on July 17, 2024

hi...should I use this npm library or not, seems to be bug in isPointInside method?

from geolib.

manuelbieh avatar manuelbieh commented on July 17, 2024

Depends on what you need. If you need a 100% accurate function to check whether a point is inside of a polygon or not, don't use it (yet). For everything else: sure, use it!

from geolib.

deepaksisodiya avatar deepaksisodiya commented on July 17, 2024

Thanks @manuelbieh

from geolib.

manuelbieh avatar manuelbieh commented on July 17, 2024

I experimentally implemented the great robust-point-in-polygon function from @mikolalysenko - you can use it like this:

var geolib = require('./dist/geolib.isPointInsideRobust')(require('geolib'));

var polygon = [
  {latitude: -46, longitude: 1},
  {latitude: -46, longitude: 2},
  {latitude: -47, longitude: 2},
  {latitude: -47, longitude: 1}
];

console.log(geolib.isPointInsideRobust({ latitude:-46, longitude:1}, polygon)) // --> 0
console.log(geolib.isPointInsideRobust({ latitude:-46, longitude:2}, polygon)) // --> 0
console.log(geolib.isPointInsideRobust({ latitude:-47, longitude:2}, polygon)) // --> 0
console.log(geolib.isPointInsideRobust({ latitude:-47, longitude:1}, polygon)) // --> 0

where 0 means the point is directly on the boundaries (then it's up to you whether you count it as "inside" or not), -1 means it is inside the given polygon and 1 means it is outside of the polygon.

In the browser just load the geolib.isPointInsideRobust.js after you loaded geolib.js. Then you can use geolib.isPointInsideRobust():

<script src="dist/geolib.js"></script>
<script src="dist/geolib.isPointInsideRobust.js"></script>
<script>
// use geolib.isPointInsideRobust() here
</script>

from geolib.

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.