mirror of
https://github.com/wassname/geopandas.git
synced 2026-09-22 13:10:25 +08:00
BUG: crs was not being set in GeoDataFrame.__init__()
This commit is contained in:
@@ -20,7 +20,7 @@ class GeoDataFrame(DataFrame):
|
||||
def __init__(self, *args, **kwargs):
|
||||
crs = kwargs.pop('crs', None)
|
||||
super(GeoDataFrame, self).__init__(*args, **kwargs)
|
||||
self.crs = None
|
||||
self.crs = crs
|
||||
|
||||
@classmethod
|
||||
def from_file(cls, filename, **kwargs):
|
||||
|
||||
Reference in New Issue
Block a user