Skip to content

Coordinate pair validation error #20

Open
@schaunwheeler

Description

@schaunwheeler

Starting in line 256 of coordinate_utils.py:

if not (-90.0 <= value[0] <= 90.0):
        raise ValueError(
            ' '.join([
                'The second element of the list is assumed to be latitude (y-coordinates),',
                'but this element is outside acceptable bounds (-90.0, 90.0)'
            ])
        )

That should actually read value[1], since latitude is supposed to be the second value of the tuple.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions