Giter VIP home page Giter VIP logo

brsuntracker's Introduction

BRSunTracker

BRSunTracker is a set of classes using Augmented Reality that allow you to track and display the position of the sun on your device screen, based on your current GPS location, the device gyroscope, the time and the date.

The position of the sun in the sky is computed via the PSA Algorithm, and its position on the screen uses the device rotation matrix provided by the gyroscope (See "How does it work?" section below). BRSunTracker also works during the night, just aim at your feet to find to find the sun.

The sample app included displays a marker on a camera preview that follows the sun on the screen and snaps to the middle of the view once the phone is oriented towards it.

http://i.imgur.com/RyTVnY6.png http://i.imgur.com/UbxsJs5.gif

Installation

BRSunTracker is available through CocoaPods, to install it simply add the following line to your Podfile:

pod "BRSunTracker"

Usage

  1. Import the BRSunTrackerView class into your view controller:
  #import "BRSunTrackerView.h"
  1. Instanciate BRSunTrackerView and add it as a subview.
BRSunTrackerView *sunTrackerView = [[BRSunTrackerView alloc] initWithFrame:CGRectMake(0, 0, 320, 428)];
[self.view addSubview:sunTrackerView];

Or you can also add a BRSunTrackerView directly via the Interface Builder.

  1. By default, the BRSunTrackerView will display a camera preview, and a default marker following the sun. You can enable or disable the camera and provide your own UIView as a marker by setting these properties:
  // Enable or disable the camera preview
  // (The default value is YES)
  [sunTrackerView setDisplayCameraPreview:YES];

  // Provide your own marker subview 
  // (otherwise will display the default one)
  [sunTrackerView setSunView:myMarkerView];
  1. (Optional) Set your view controller as the delegate of the BRSunTrackerView and make it conform to the BRSunTrackerViewDelegate protocol. Implement the following methods to detect when the phone is aligned with the sun:
  [sunTrackerView setDelegate:self];  
  - (void)sunTrackerViewGotFocus:(BRSunTrackerView *)sunTrackerView{
      NSLog(@"The sun is aligned with the device.");
  }
  
  - (void)sunTrackerViewLostFocus:(BRSunTrackerView *)sunTrackerView{
      NSLog(@"The sun is not aligned with the device anymore.");
  }
  1. Grab a pair of sunglasses (and a cold drink).

How does it work?

A diagram explaining roughly the process of computing the sun 2D screen coordinates in BRSunTracker is shown below. All of this happens inside the BRSunTracker class. The gyroscope orientation data is currently sampled 60 times per second, the sun spherical coordinates are computed every minute or when the GPS location gets updated.

http://i.imgur.com/aF1SeW5.png

Sources and acknowledgements

pARk, Apple code sample showing a basic Augmented Reality implementation

PSA Algorithm, C++ function that computes the spherical coordinates of the sun based on the GPS coordinates, the time and date.

Stack Overflow, My initial Stack Overflow post about how to compare the device orientation with the sun position.

Thanks to Dan Marson who provided the GIF shown above.

This feature was conceived and built for the "Piano Ombre" album-app concept for Frànçois and the Atlas Mountains, now available on the App Store.

Author

Julien Ducret - [email protected]

Follow me on Twitter @jbrocoo

Check out my app: Spores

Licence

BRSunTracker is under Apache licence, see the LICENCE file for more info.

brsuntracker's People

Contributors

brocoo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.