1GeoPandas is a project to add support for geographic data to pandas objects. 2It currently implements GeoSeries and GeoDataFrame types which are subclasses 3of pandas.Series and pandas.DataFrame respectively. GeoPandas objects can act 4on shapely geometry objects and perform geometric operations. 5 6GeoPandas geometry operations are cartesian. The coordinate reference system 7(crs) can be stored as an attribute on an object, and is automatically set when 8loading from a file. Objects may be transformed to new coordinate systems with 9the to_crs() method. There is currently no enforcement of like coordinates for 10operations, but that may change in the future. 11