Open Weather API Wrapper


Source link: https://github.com/zurche/open-weather-map-android-wrapper

open-weather-map-android-wrapper

Non-official API wrapper of OpenWeatherMap.org for Android made with Retrofit 2.0

Add to your project build.gradle

allprojects {
  repositories {

...
maven {
 url "https://jitpack.io" 
}
  
}
 
}

Add to your app module build.gradle

dependencies {

compile 'com.github.zurche:open-weather-map-android-wrapper:v0.1' 
}

Also remember to add the INTERNET permission in your Manifest:

<uses-permission android:name="android.permission.INTERNET"/>

Check a usage example of this library here: https://github.com/zurche/color-weather

The wrapper currently supports the following endpoints of OpenWeatherMap API:

OWService setup

To use the API you need a valid OpenWeatherMap API KEY, once you get it you are able to setup and create your OWService object:

private OWService mOWService = new OWService("<YOUR API KEY GOES HERE>");

You can configure it with the desired language and metric units in which you need the forecast temperatures retrieved:

mOWService.setLanguage(getActivity().getResources().getConfiguration().locale);
 mOWService.setMetricUnits(OWSupportedUnits.METRIC);

five-day forecast

To retrieve 5 Days Forecast the library populates the ExtendedWeather object with the retrieved information. To set the location you need to get the weather forecast create a Coor object with the desired Lat/Lon value:

Coord coordinate = new Coord();
 coordinate.setLat(-31.42);
 coordinate.setLon(-64.18);
  mOWService.getFiveDayForecast(coordinate, new OWRequestListener<ExtendedWeather>() {

 @Override

 public void onResponse(OWResponse<ExtendedWeather> response) {

  ExtendedWeather extendedWeather = response.body();

  //Do something with the object here!

 
}

  @Override

 public void onFailure(Throwable t) {

  Log.e(TAG, "Five Day Forecast request failed: " + t.getMessage());

 
}

}
);

current-day forecast

To get the current day forecast you also need to send the Coord object with the Lat/Lon pair of the location to retrieve the weather from and the library will respond with a CurrentWeather object populated with the temperature information:

Coord coordinate = new Coord();
 coordinate.setLat(-31.42);
 coordinate.setLon(-64.18);
  mOWService.getCurrentDayForecast(coordinate, new OWRequestListener<CurrentWeather>() {

  @Override
  public void onResponse(OWResponse<CurrentWeather> response) {

CurrentWeather currentWeather = response.body();

//Do something with the object here!
  
}

@Override
  public void onFailure(Throwable t) {

Log.e(TAG, "Current Day Forecast request failed: " + t.getMessage());

  
}
 
}
);

License

Copyright 2016 Alejandro Zürcher  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. 

Resources

The RangeBar is an enhanced SeekBar widget in vertical. It provides 2 thumbs between 0-N value.

Amazing Dynamic Time UI for Android.

Log4j with the ability to send the logs to HTTP GET request's.

This project goal is to create activity fragment and views, with less code to be more efficient on the view models.

CPN

This is a small library that wraps Google Cloud Messaging solution to make it easier to implement it. It also add the ability to consume notification if the app is running at the moment of receiving the notification without additional work.

Servant will create and manage GoogleApiClient from Google Play Services for you so you can focus on the important actions and requests you want to perform with them.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes