Lyft Sensor Help on 0.42.2

Has anyone successfully setup the Lyft Sensor?

My Lyft Sensor

Backtrace Error Log

17-04-09 18:41:17 ERROR (MainThread) [homeassistant.components.sensor] Error while setting up platform lyft
Traceback (most recent call last):
  File "/srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/homeassistant/helpers/entity_component.py", line 153, in _async_setup_platform
    entity_platform.schedule_add_entities, discovery_info
  File "/usr/lib/python3.4/asyncio/futures.py", line 388, in __iter__
    yield self  # This tells Task to wait for completion.
  File "/usr/lib/python3.4/asyncio/tasks.py", line 286, in _wakeup
    value = future.result()
  File "/usr/lib/python3.4/asyncio/futures.py", line 277, in result
    raise self._exception
  File "/usr/lib/python3.4/concurrent/futures/thread.py", line 54, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/homeassistant/components/sensor/lyft.py", line 61, in setup_platform
    config.get(CONF_END_LATITUDE), config.get(CONF_END_LONGITUDE))
  File "/srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/homeassistant/components/sensor/lyft.py", line 194, in __init__
    self.__real_update()
  File "/srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/homeassistant/components/sensor/lyft.py", line 208, in __real_update
    self.start_latitude, self.start_longitude)
  File "/home/homeassistant/.homeassistant/deps/lyft_rides/client.py", line 98, in get_ride_types
    return self._api_call('GET', 'v1/ridetypes', args=args)
  File "/home/homeassistant/.homeassistant/deps/lyft_rides/client.py", line 77, in _api_call
    return request.execute()
  File "/home/homeassistant/.homeassistant/deps/lyft_rides/request.py", line 129, in execute
    return self._send(prepared_request)
  File "/home/homeassistant/.homeassistant/deps/lyft_rides/request.py", line 115, in _send
    response = session.send(prepared_request)
  File "/srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/requests/sessions.py", line 615, in send
    r = dispatch_hook('response', hooks, r, **kwargs)
  File "/srv/homeassistant/homeassistant_venv/lib/python3.4/site-packages/requests/hooks.py", line 31, in dispatch_hook
    _hook_data = hook(hook_data, **kwargs)
  File "/home/homeassistant/.homeassistant/deps/lyft_rides/utils/handlers.py", line 40, in error_handler
    raise ClientError(response, message)
lyft_rides.errors.ClientError: The requested location is not inside a Lyft service area
- platform: lyft
  client_id: !secret lyftclientid
  client_secret: !secret lyftclientsecret
  start_latitude: !secret lyftstartlatitude
  start_longitude: !secret lyftstartlongitude
  end_latitude: !secret endlatitudelyft
  end_longitude: !secret endlongitudelyft
  product_ids:
    - 'lyft'
    - 'lyft_plus'
    - 'lyft_line'

I believe the issue was caused by re-using my !secret latitude and !secret longitude for my home start_latitude and start_longitude. Once I duplicated these entries in my secrets.yaml file I can now see the entities and setup a group for them.

Now to figure out some templating to get the display to look niceā€¦