geo
2016-01-26 10:53:25 0 举报
Geo是一个用于地理空间数据分析和可视化的Python库。它提供了丰富的功能,包括数据转换、空间分析、地图绘制等。Geo库可以处理各种地理数据格式,如Shapefile、GeoJSON、KML等,并支持多种地理坐标系统。通过使用Geo库,用户可以进行地理编码、缓冲区分析、叠加分析等操作,从而深入了解地理空间数据的特征和关系。此外,Geo库还提供了直观的地图可视化工具,可以将地理数据以交互式地图的形式展示出来,帮助用户更好地理解和解释数据。总之,Geo是一个功能强大且易于使用的地理空间数据分析和可视化工具,适用于各种领域的应用需求。
作者其他创作
大纲/内容
LineString
protected List pointArray = null;
public int getPointNum(); public double getLength();/线的长度 public boolean isClosed(); public List getLines(); public Envelope getEnvelope(); public boolean isEmpty();
abstract Surface
LineSegment
private Coordinate startPoint; private Coordinate endPoint;
public Envelope getEnvelope();public boolean isEmpty();public double distance(Coordinate p);public List getLines();public boolean isClosed();
Polygon
protected LinearRing[] inLine = null;protected LinearRing exteriorRing = null;
public List getLines();public boolean isRectangle();//详解博客public Envelope getEnvelope();public boolean isEmpty();
abstract Position
public double x = Double.NaN;public double y = Double.NaN;
abstract Curve
public abstract int getPointNum();public abstract double getLength();public abstract boolean isClosed();
Coordinate
init();
public abstract Envelope getEnvelope();public abstract boolean isEmpty();public abstract List getLines();
abstract Geometry
public abstract Envelope getEnvelope(); public abstract boolean isEmpty(); public abstract List getLines();
boolean equals(Geometry geometry);boolean intersects(Geometry geometry);//详解下节boolean disjoint(Geometry geometry);
SpatialReferenceSystem
boolean equals(Geometry geometry);boolean intersects(Geometry geometry);boolean disjoint(Geometry geometry);
0 条评论
下一页