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:

  • City's name

  • Longitude of the city

  • Latitude of the city

  • 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

#coordinates ⇒ Coordinates (readonly)

Returns City's coordinates.

Returns:

  • City's coordinates



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

def coordinates
  @coordinates
end

#country ⇒ String (readonly)

Returns Country in which the city is.

Returns:

  • Country in which the city is



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

def country
  @country
end

#name ⇒ String (readonly)

Returns City's name.

Returns:

  • City's name



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

def name
  @name
end