Skip to content

mdmasum-shuvo/Asteroid-Radar-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Asteroid radar app Using open-source Nasa Api

Asteroid Radar is an app to view the asteroids detected by NASA that pass near Earth, you can view all the detected asteroids given a period of time with data such as the size, velocity, distance to earth and if they are potentially hazardous. In this project, you will apply the skills such as fetching data from the internet, saving data to a database, and display the data in a clear, compelling UI.

You will need the NEoWs API which is a free, open source API provided by NASA JPL Asteroid team, as they explain it: “Is a RESTful web service for near earth Asteroid information. With NeoWs a user can: search for Asteroids based on their closest approach date to Earth, lookup a specific Asteroid with its NASA JPL small body id, as well as browse the overall data-set.api key is set into local.properties file .create your own api key and put it to the local.properties for security

The App Feature:

  • Includes the Main screen with a list of clickable asteroids
  • Includes a Details screen that displays the selected asteroid data once it’s clicked in the Main screen
  • Downloads and parses data from the NASA NeoWS (Near Earth Object Web Service) API.
  • Once an asteroid is saved in the database, the list of asteroids is displayed
  • The asteroids data is cached by using a worker, so it downloads and saves week asteroids in background when device is charging and wifi is enabled, as well as deleted the asteroids data of the previous day
  • App works in multiple screen sizes and orientations, also it provides talk back and push button navigation.

Instructions for using API

To build this project the NASA NeoWS (Near Earth Object Web Service) API is used, which can be found here: https://api.nasa.gov/

In order to run the app, you need an API Key which is provided for you in that same link, just fill the fields in the form and click Signup. save the api key in your local.properties folder as `api_key="you api key"

Dependencies

The most important dependencies used are:

  • Retrofit to download the data from the Internet.
  • Moshi to convert the JSON data we are downloading to usable data in form of custom classes.
  • GLide to download and cache images.
  • RecyclerView to display the asteroids in a list.

The following components from the Jetpack library are used:

  • ViewModel
  • Room
  • LiveData
  • Data Binding
  • Navigation

Built With

  • Android Studio - Default IDE used to build android apps
  • Kotlin - Default language used to build this project
  • Navigation Component - Android Jetpack's Navigation component, used for Fragment-based navigation
  • Retrofit - a type-safe HTTP client for Android and Java
  • Moshi - a modern JSON library for Android and Java, that makes it easy to parse JSON into Java or Kotlin objects
  • Glide - a powerful image downloading and caching library for Android
  • Android Architecture Components - a collection of libraries that help design robust, testable, and maintainable apps: Room (a SQLite object mapping library), LiveData (builds data objects that notify views when the underlying database changes), ViewModel (stores UI-related data that isn't destroyed on app rotations)
  • Data Binding - a Jetpack support library that allows to bind UI components in your layouts to data sources in your app using a declarative format rather than programmatically
  • MVVM - the architecture pattern used in the app (Model-View-ViewModel), that incorporates the Android Architecture Components

Note: Android Kotlin Gradle Update

Use the updated Gradle version in the ~/gradle/wrapper/gradle-wrapper.properties file:

distributionUrl = https\://services.gradle.org/distributions/gradle-6.1.1-all.zip

App Screenshots

Code review from udacity :D