美文网首页
Geopandas函数大全

Geopandas函数大全

作者: python大数据分析 | 来源:发表于2020-08-17 09:01 被阅读0次

    GeoSeries函数和方法解析

    • GeoSeries.plot(self, args, *kwargs) 几何图形空间可视化
    • GeoSeries.area 返回几何图形的面积
    • GeoSeries.bounds 返回几何图形x、y的最大最小值
    • GeoSeries.length 返回几何图形的长度
    • GeoSeries.geom_type 返回几何类型
    • GeoSeries.distance(self, other) 返回一个几何图形到另一个的距离
    • GeoSeries.representative_point(self) 返回该几何图形内的一个点位置
    • GeoSeries.exterior
    • GeoSeries.interiors
    • GeoSeries.x 返回几何点的x位置
    • GeoSeries.y 返回几何点的y位置
    • GeoSeries.is_empty 查看是否是空几何
    • GeoSeries.contains(self, other) 如果空间A包含空间B,返回True
    • GeoSeries.crosses(self, other) 如果空间A与空间B相交,返回True
    • GeoSeries.disjoint(self, other) 如果空间A与空间B不相交,返回True
    • GeoSeries.geom_equals(self, other) 如果空间A与空间B完全重合,返回True
    • GeoSeries.intersects(self, other) 如果空间A与空间B有相交,返回True
    • GeoSeries.touches(self, other) 如果空间A与空间B有接触点,但不相交,返回True
    • GeoSeries.within(self, other) 如果空间A在空间B里,返回True
    • GeoSeries.difference(self, other) 返回空间A不在空间B中的点
    • GeoSeries.intersection(self, other) 返回空间A与空间B相交的点
    • GeoSeries.union(self, other) 返回空间A与空间B相交点的并集
    • GeoSeries.buffer(self, distance, resolution=16, **kwargs) 将空间A向外扩展一定距离,返回空间B
    • GeoSeries.boundary 返回空间A的边界
    • GeoSeries.centroid 返回空间A的质心
    • GeoSeries.convex_hull 返回包含空间A的最小凸点多边形空间B
    • GeoSeries.envelope 返回包含空间A的最小矩形空间B
    • GeoSeries.simplify(self, args, *kwargs) 返回空间A的简化表示空间B
    • GeoSeries.rotate(self, angle, origin='center', use_radians=False) 返回空间A旋转某角度后的空间B
    • GeoSeries.scale(self, xfact=1.0, yfact=1.0, zfact=1.0, origin='center') 返回空间A扩大或缩放n倍后的空间
    • GeoSeries.skew(self, xs=0.0, ys=0.0, origin='center', use_radians=False) 返回空间A倾斜n倍后的空间
    • GeoSeries.translate(self, xoff=0.0, yoff=0.0, zoff=0.0) 返回空间A偏移后的空间B
    • GeoSeries.unary_union 返回包含所有空间的并集空间图形
    • GeoSeries.from_file(filename, **kwargs) 读取GeoSeries空间文件
    • GeoSeries.to_file(self, filename, driver='ESRI Shapefile', index=None, **kwargs) 保存GeoSeries空间文件
    • GeoSeries.to_json(self, **kwargs) 将GeoSeries转化为GeoJSON
    • GeoSeries.crs 返回坐标参考系
    • GeoSeries.to_crs(self, crs=None, epsg=None) 转换坐标参考系
    • GeoSeries._geo_interface_ 返回空间A的要素和属性集合
    • GeoSeries.isna(self) 检测空值
    • GeoSeries.notna(self) 检测非空值
    • GeoSeries.fillna(self, value=None, method=None, inplace=False, **kwargs) 填充非空值

    GeoDataFrame函数和方法解析

    • GeoDataFrame.plot(self, args, *kwargs) 几何图形空间可视化
    • GeoDataFrame.rename_geometry(self, col, inplace=False) 对GeoDataFrame的几何列重新命名,并返回新对象
    • GeoDataFrame.set_geometry(self, col, drop=False, inplace=False, crs=None) 设置几何列,并返回新对象
    • GeoDataFrame.explode(self) 将多部分几何体分解为多个单一几何体
    • GeoDataFrame.dissolve(self, by=None, aggfunc='first', as_index=True) groupby聚合,可以使用处理函数
    • GeoDataFrame._geo_interface_ 返回空间A的要素和属性集合
    • GeoDataFrame.crs 返回坐标参考系
    • GeoDataFrame.to_crs(self, crs=None, epsg=None, inplace=False) 转换坐标参考系
    • GeoDataFrame.from_file(filename, **kwargs) 读取GeoDataFrame空间文件
    • GeoDataFrame.to_file(self, filename, driver='ESRI Shapefile', schema=None, index=None, **kwargs) 保存GeoDataFrame空间文件
    • GeoDataFrame.to_json(self, na='null', show_bbox=False, **kwargs) 将GeoDataFrame转化为GeoJSON
    • GeoDataFrame.to_parquet(self, path, index=None, compression='snappy', **kwargs) 将GeoDataFrame保存为parquet文件
    • GeoDataFrame.from_features(features, crs=None, columns=None) 将feather格式文件读为GeoDataFrame
    • GeoDataFrame.to_feather(self, path, index=None, compression=None, **kwargs) 将GeoDataFrame保存为feather格式文件
    • GeoDataFrame.from_postgis(sql, con, geom_col='geom', crs=None, index_col=None, coerce_float=True, parse_dates=None, params=None, chunksize=None) PostGIS数据库读取GeoDataFrame
    • GeoDataFrame.to_postgis(self, name, con, schema=None, if_exists='fail', index=False, index_label=None, chunksize=None, dtype=None)\将GeoDataFrame上传到PostGIS数据库

    判断

    • geopandas.testing.geom_equals(this, that) 判断几何空间是否相等
    • geopandas.testing.geom_almost_equals(this, that) 判断几何空间是否几乎相等,能允许细微的差异
    • geopandas.testing.assert_geoseries_equal(left, right, check_dtype=True, check_index_type=False, check_series_type=True, check_less_precise=False, check_geom_type=False, check_crs=True) 判断两个geoseries几何空间是否相等
    • geopandas.testing.assert_geodataframe_equal(left, right, check_dtype=True, check_index_type='equiv', check_column_type='equiv', check_frame_type=True, check_like=False, check_less_precise=False, check_geom_type=False, check_crs=True) 判断两个geodataframe几何空间是否相等

    相关文章

      网友评论

          本文标题:Geopandas函数大全

          本文链接:https://www.haomeiwen.com/subject/pytndktx.html