# WeatherLocation

Represents the location of the [Weather ](https://nerdguyahmad.gitbook.io/randomstuff/data-classes/weather)object.

|                **Attributes**               |
| :-----------------------------------------: |
|               [`name`](#name)               |
|                [`lat`](#lat)                |
|               [`long`](#long)               |
|           [`timezone`](#timezone)           |
|             [`alert`](#timezone)            |
|         [`degreetype`](#degreetype)         |
|   [`imagerelativeurl`](#imagerelativeurl)   |
|           [`latitude`](#latitude)           |
|          [`longitude`](#longitude)          |
|        [`degree_type`](#degree_type)        |
| [`image_relative_url`](#image_relative_url) |

## Attributes

### `name`

The name of location.

**Type:** `str`

### `lat`

The latitude of location.

{% hint style="info" %}
There's a chance that this is `None`
{% endhint %}

**Type:** `str`

### `long`

The longitude of the location.

**Type:** `str`

### `timezone`

The timezone of the location.

**Type:** `str`

### `alert`

The alert of the location.

**Type:** `str`

### `degreetype`

The degree type of the location.

**Type:** `str`

### `imagerelativeurl`

The image URL of the location.

**Type:** `str`

### `latitude`

An alias for [`lat`](#lat) attribute.

**Type:** `str`

### `longitude`

An alias of [`long`](#long) attribute.

**Type:** `str`

### `degree_type`

An alias of [`degreetype` ](#degreetype)attribute.

**Type:** `str`

### `image_relative_url`

An alias of [`imagerelativeurl` ](#imagerelativeurl)attribute.

**Type:** `str`
