Skip to content

Commit e4df781

Browse files
ThibTripPingviinituutti
authored andcommitted
DOC: fixed geo accessor example in extending.rst (pandas-dev#25420)
I realised "lon" and "lat" had just been switched with "longitude" and "latitude" in the following code block. So I used those names here as well.
1 parent b785829 commit e4df781

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

doc/source/development/extending.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ decorate a class, providing the name of attribute to add. The class's
3333
3434
@staticmethod
3535
def _validate(obj):
36-
if 'lat' not in obj.columns or 'lon' not in obj.columns:
37-
raise AttributeError("Must have 'lat' and 'lon'.")
36+
# verify there is a column latitude and a column longitude
37+
if 'latitude' not in obj.columns or 'longitude' not in obj.columns:
38+
raise AttributeError("Must have 'latitude' and 'longitude'.")
3839
3940
@property
4041
def center(self):

0 commit comments

Comments
 (0)