Skip to content

Commit

Permalink
Swap lat lon for extract_values_to_points (gee-community#2023)
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs authored May 27, 2024
1 parent 89c73e8 commit 414298d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geemap/geemap.py
Original file line number Diff line number Diff line change
Expand Up @@ -2513,7 +2513,7 @@ def extract_values_to_points(self, filename):
count = len(self._chart_points)
out_list = []
if count > 0:
header = ["id", "longitude", "latitude"] + self._chart_labels
header = ["id", "latitude", "longitude"] + self._chart_labels
out_list.append(header)

for i in range(0, count):
Expand Down

0 comments on commit 414298d

Please sign in to comment.