function Location (data) {
	if (typeof data != 'object') {
		return;
	}
	for (property in data) {
		this[property] = data[property];
	}
}

Location.prototype.get_coordinates = function () {
	return [this.latitude, this.longitude];
}