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