Skip to content

lanink/MiniGeo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MiniGeo

地理小工具

项目开发计划

  • Geo-fencing
  • Min-rectangle
  • R-tree

##使用

public class App(){
    public static void main(String[] args){
        Point p = new Point(1.5, 1.5);
        Point[] v = new Point[4];
        v[0] = new Point(1, 1);
        v[1] = new Point(2, 1);
        v[2] = new Point(2, 2);
        v[3] = new Point(1, 2);
        Fence.isIn(p, new Polygon(v)); // true
    }
}

About

地理小工具

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages