# Coordinates
The `Coordinates` class represents a Geographic coordniate.

# Constructor
## constructor(longitude, latitude)
Creates a Coordinate instance.

## Arguments
| **Name** | **Type** | **Required** | **Description** |
| ----------- | ----------- | ----------- | ----------- |
| longitude | number | true | The longitude. |
| latitude | number | true | The latitude. |

# Methodds
| **Method** | **Arguments** | **Return Type** | **Description** |
| ----------- | ----------- | ----------- | ----------- |
| equals() | (any) suspect | boolean | Determines if the `Coordinate` instance is equal to the suspect|
| latitude() | N/A | number | Gets the latitude of the coordinate |
| longitude() | N/A | number | Gets the longitude of the coordinate. |
| toString() | N/A | string | Converts the `Coordinate` instance to a string. |