Skip to content

Latest commit

 

History

History
243 lines (188 loc) · 4.23 KB

geoseries.rst

File metadata and controls

243 lines (188 loc) · 4.23 KB

GeoSeries

geopandas

Constructor

GeoSeries

General methods and attributes

GeoSeries.area GeoSeries.boundary GeoSeries.bounds GeoSeries.total_bounds GeoSeries.length GeoSeries.geom_type GeoSeries.offset_curve GeoSeries.distance GeoSeries.hausdorff_distance GeoSeries.frechet_distance GeoSeries.representative_point GeoSeries.exterior GeoSeries.interiors GeoSeries.minimum_bounding_radius GeoSeries.x GeoSeries.y GeoSeries.z GeoSeries.get_coordinates GeoSeries.count_coordinates GeoSeries.count_geometries GeoSeries.count_interior_rings GeoSeries.set_precision GeoSeries.get_precision

Unary predicates

GeoSeries.is_closed GeoSeries.is_empty GeoSeries.is_ring GeoSeries.is_simple GeoSeries.is_valid GeoSeries.has_z GeoSeries.is_ccw

Binary predicates

GeoSeries.contains GeoSeries.contains_properly GeoSeries.crosses GeoSeries.disjoint GeoSeries.dwithin GeoSeries.geom_equals GeoSeries.geom_almost_equals GeoSeries.geom_equals_exact GeoSeries.intersects GeoSeries.overlaps GeoSeries.touches GeoSeries.within GeoSeries.covers GeoSeries.covered_by GeoSeries.relate GeoSeries.relate_pattern

Set-theoretic methods

GeoSeries.clip_by_rect GeoSeries.difference GeoSeries.intersection GeoSeries.symmetric_difference GeoSeries.union

Constructive methods and attributes

GeoSeries.boundary GeoSeries.buffer GeoSeries.build_area GeoSeries.centroid GeoSeries.concave_hull GeoSeries.convex_hull GeoSeries.delaunay_triangles GeoSeries.envelope GeoSeries.extract_unique_points GeoSeries.force_2d GeoSeries.force_3d GeoSeries.make_valid GeoSeries.minimum_bounding_circle GeoSeries.minimum_clearance GeoSeries.minimum_rotated_rectangle GeoSeries.normalize GeoSeries.remove_repeated_points GeoSeries.reverse GeoSeries.sample_points GeoSeries.segmentize GeoSeries.shortest_line GeoSeries.simplify GeoSeries.snap GeoSeries.transform GeoSeries.voronoi_polygons

Affine transformations

GeoSeries.affine_transform GeoSeries.rotate GeoSeries.scale GeoSeries.skew GeoSeries.translate

Linestring operations

GeoSeries.interpolate GeoSeries.line_merge GeoSeries.project

Aggregating and exploding

GeoSeries.union_all GeoSeries.intersection_all GeoSeries.explode

Serialization / IO / conversion

GeoSeries.from_file GeoSeries.from_wkb GeoSeries.from_wkt GeoSeries.from_xy GeoSeries.to_file GeoSeries.to_json GeoSeries.to_wkb GeoSeries.to_wkt

Projection handling

GeoSeries.crs GeoSeries.set_crs GeoSeries.to_crs GeoSeries.estimate_utm_crs

Missing values

GeoSeries.fillna GeoSeries.isna GeoSeries.notna

Overlay operations

GeoSeries.clip

Plotting

GeoSeries.plot GeoSeries.explore

Spatial index

GeoSeries.sindex GeoSeries.has_sindex

Indexing

GeoSeries.cx

Interface

GeoSeries.__geo_interface__

Methods of pandas Series objects are also available, although not all are applicable to geometric objects and some may return a Series rather than a GeoSeries result when appropriate. The methods isna() and fillna() have been implemented specifically for GeoSeries and are expected to work correctly.