/Sky/src/org/jsharkey/sky/webservice/MetarSource.java

http://android-sky.googlecode.com/ · Java · 33 lines · 9 code · 8 blank · 16 comment · 0 complexity · 6e70e4510a75d279f04f557e187fe284 MD5 · raw file

  1. /*
  2. * Copyright (C) 2009 Jeff Sharkey, http://jsharkey.org/
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.jsharkey.sky.webservice;
  17. import org.jsharkey.sky.webservice.Forecast.ParseException;
  18. import java.util.List;
  19. public class MetarSource implements ForecastSource {
  20. // TODO: find an online API that performs lat+lon lookup to METAR station code
  21. @Override
  22. public List<Forecast> getForecasts(double lat, double lon, int days) throws ParseException {
  23. throw new ParseException("METAR not yet implemented");
  24. }
  25. }