We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 367b60f commit 72cd582Copy full SHA for 72cd582
src/kof_parser/parser.py
@@ -161,7 +161,10 @@ def _read_kof(
161
location = self.map_line_to_coordinate_block(line, result_srid)
162
163
if not self.use_east_north_order_as_default or swap_easting_northing:
164
- location.point_easting, location.point_northing = location.point_northing, location.point_easting
+ location.point_easting, location.point_northing = (
165
+ location.point_northing,
166
+ location.point_easting,
167
+ )
168
169
if self.file_srid and result_srid != self.file_srid:
170
if location.point_easting and location.point_northing:
0 commit comments