Class: OpenWeatherMap::City

Inherits:
Object
  • Object
show all
Defined in:
lib/openweathermap/classes.rb

Overview

Class representing a city

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, lon, lat, country) ⇒ City

Create a new City object

Parameters:

  • name (String)

    City’s name

  • lon (Float)

    Longitude of the city

  • lat (Float)

    Latitude of the city

  • country (String)

    Country in which the city is



33
34
35
36
37
# File 'lib/openweathermap/classes.rb', line 33

def initialize(name, lon, lat, country)
  @name = name
  @coordinates = OpenWeatherMap::Coordinates.new(lon, lat)
  @country = country
end

Instance Attribute Details

#coordinatesCoordinates (readonly)

Returns City’s coordinates.

Returns:



18
19
20
# File 'lib/openweathermap/classes.rb', line 18

def coordinates
  @coordinates
end

#countryString (readonly)

Returns Country in which the city is.

Returns:

  • (String)

    Country in which the city is



23
24
25
# File 'lib/openweathermap/classes.rb', line 23

def country
  @country
end

#nameString (readonly)

Returns City’s name.

Returns:

  • (String)

    City’s name



13
14
15
# File 'lib/openweathermap/classes.rb', line 13

def name
  @name
end