SlideShare ist ein Scribd-Unternehmen logo
1 von 22
Garmin API Integration
www.letsnurture.com
Types of Garmin API/SDK offerings
The VIRB Network Services API gives you
freedom to develop applications to discover,
control, configure, stream and access media
over Wi-Fi.
The Connect IQ SDK contains all the
necessary tools to build the different types of
apps (watch faces, data fields, widgets and
apps) for the Connect IQ platform.
The Garmin Connect API gives you access
this robust data. With the Connect API, the
innovation possibilities are endless.
www.letsnurture.com
Types of Garmin API/SDK offerings
Garmin Wellness API makes it easy to
create a wellness program with wellness data
from Garmin devices.
Garmin fleet managment developer kit
contains the communication protocols and
system requirements for our Fleet
Management Interface (FMI).
Create custom maps that can be easily
loaded onto Garmin devices with Map
Product Creator (MPC).
www.letsnurture.com
Types of Garmin API/SDK offerings
The Content Toolkit by Garmin gives you the
tools to create secure points of interest (POIs)
and customizable voices for our GPS devices.
You can market your products to owners of
our GPS systems, creating an entirely new
ecosystem of content, devices and customers
who are eager to expand the capability of their
Garmin devices.
www.letsnurture.com
Access the Data from Garmin Connect
Garmin Connect is the only online community
created specifically for, and works seamlessly with,
our Forerunner, Edge and fēnix products.
Garmin Connect stores and analyzes end-user data
and supports more than 30 different activity types.
The Garmin Connect API gives you access this
robust data. With the Connect API, the innovation
possibilities are endless.
www.letsnurture.com
Access the Data from Garmin Connect
API Features
Potential access to data from millions of end users
worldwide
Access to full FIT files (or TCX files, depending on
device) with minute- and second-level data
Near real-time data pushed directly to developer
server (it is your responsibility to have your servers
accessible for data reception)
www.letsnurture.com
Access the Data from Garmin Connect
What’s Included
API and OAuthToken
Advanced notification of upcoming API updates,
including new and improved functionality
Access to technical support
Access to official Garmin Connect logo and
branding requirements
www.letsnurture.com
Access the Data from Garmin Connect
Back up data
Export your activity for upload to other programs.
From the Details page you can export a .TCX file for
other fitness programs and .KML for Google Earth.
From the Splits page you can export a CSV file with
the details of your activity.
www.letsnurture.com
TCX FILES
There are two versions of TCX files: TCX Course
and TCX History.
TCX Course files contain all the navigation to use
with your Garmin Edge series devices. This is the
most common file format that we recommend to get
turn-by-turn navigation.
TCX History files contain the entire track of the
recorded ride including sensor information like heart
rate, cadence, and power if applicable. Export as a
TCX History if you wish to transfer a ride to another
service or application for analysis.
www.letsnurture.com
GPX FILES
There are two kinds of GPX files: GPX Track and
GPX Route.
GPX Track This file type contains the thousands of
points used to draw the map. Your GPS will follow
this track and is the next most common format we
recommend for units that cannot use a TCX Course
file.
GPX Route only contains the cuesheet entries, and
relies on the GPS device to calculate a route
between each of the cuesheet entries.
www.letsnurture.com
Differences
Since the maps inside the GPS unit are different
than the Google maps used to plan the route, often
times the route chosen by the GPS unit will be
slightly different than the one planned using our site.
Unless you know what you are doing, GPX Routes
are not as useful and should be avoided.
www.letsnurture.com
Two reasons to choose GPX file:
You have a GPS unit that doesn’t read TCX files.
The eTrex, Oregon, Montana, and GPSmap series
do not read TCX.
You don’t care about riding a certain speed, and you
don’t need the basic turn guidance offered by the
TCX.
If you have Garmin maps or OSM maps installed on
a microSD card in your map-capable GPS unit, your
GPS will provide native turn guidance and there is no
need for the basic navigation offered by the TCX
format.
www.letsnurture.com
Other File Types:
FIT: Used by newer fitness units (Edge 500/800/810/1000,
newer Forerunner watches). This file contains the ride data
and is pulled off the unit to be uploaded to a site like the Ride
with GPS Upload page. It is not used as an export format for
navigation.
KML: Not used as an export format for navigation on GPS
devices, but a useful export for viewing a route or activity in
Google Earth.
CSV: Comma Separated Values, useful for importing into a
spreadsheet program. This export option only includes the
cues for printing and none of the navigation for GPS devices
or the mobile app.
www.letsnurture.com
GPX Files & Xcode
Xcode uses a standardized file type to simulate
locations.
The GPX spec defines many different ways to define
a path or a set of geolocation coordinates. Xcode
only uses the <wpt> tag so if you find a tool that
generates <rte> or <trk> based gpx files, Xcode
won't be able simulate your location properly.
You can find more information about GPX files here:
http://en.wikipedia.org/wiki/GPSeXchangeFormat
www.letsnurture.com
Using Xcode, we can simulate our locations two
ways.
The first way is to have the location simulated from
application launch.
To do this, we need to open up the Scheme Editor
(Product->Scheme->Edit Scheme or
Command+Shift+,) and make sure the "Allow
Location Simulation" checkmark is checked. To
import the freshly created gpx file, open the
dropdown control and select "Add GPX File to
Project...".
Navigate to the file and select it and have Xcode
copy the file into the destination group's folder.
www.letsnurture.com
www.letsnurture.com
Drag the framework file into the project's
Frameworks group, and import the header file.
#import <GPX/GPX.h>
To parsing the GPX file, simply call the parse
method :
GPXRoot *root = [GPXParser
parseGPXWithString:gpx];
www.letsnurture.com
You can generate the GPX :
GPXRoot *root = [GPXRoot rootWithCreator:@"Sample Application"];
GPXWaypoint *waypoint = [root newWaypointWithLatitude:35.658609f
longitude:139.745447f];
waypoint.name = @"Tokyo Tower";
waypoint.comment = @"The old TV tower in Tokyo.";
GPXTrack *track = [root newTrack];
track.name = @"My New Track";
[track newTrackpointWithLatitude:35.658609f longitude:139.745447f];
[track newTrackpointWithLatitude:35.758609f longitude:139.745447f];
[track newTrackpointWithLatitude:35.828609f longitude:139.745447f];
www.letsnurture.com
What are the benefits of GPX?
Here are some of the benefits that GPX provides:
GPX allows you to exchange data with a growing list of
programs for Windows, MacOS, Linux, Palm, and PocketPC.
GPX can be transformed into other file formats using a simple
webpage or converter program.
GPX is based on the XML standard, so many of the new
programs you use (Microsoft Excel, for example) can read
GPX files.
GPX makes it easy for anyone on the web to develop new
features which will instantly work with your favorite programs.
www.letsnurture.com
Sample GPX File
<?xml version="1.0" encoding="UTF-8"?>
<gpx version="1.0">
<name>Example gpx</name>
<wpt lat="46.57638889" lon="8.89263889">
<ele>2372</ele>
<name>LAGORETICO</name>
</wpt>
<trk><name>Example gpx</name><number>1</number><trkseg>
<trkpt lat="46.57608333" lon="8.89241667"><ele>2376</ele><time>2007-10-
14T10:09:57Z</time></trkpt>
<trkpt lat="46.57619444" lon="8.89252778"><ele>2375</ele><time>2007-10-
14T10:10:52Z</time></trkpt>
<trkpt lat="46.57641667" lon="8.89266667"><ele>2372</ele><time>2007-10-
14T10:12:39Z</time></trkpt>
<trkpt lat="46.57650000" lon="8.89280556"><ele>2373</ele><time>2007-10-
14T10:13:12Z</time></trkpt>
<trkpt lat="46.57638889" lon="8.89302778"><ele>2374</ele><time>2007-10-
14T10:13:20Z</time></trkpt>
<trkpt lat="46.57652778" lon="8.89322222"><ele>2375</ele><time>2007-10-
14T10:13:48Z</time></trkpt>
<trkpt lat="46.57661111" lon="8.89344444"><ele>2376</ele><time>2007-10-
14T10:14:08Z</time></trkpt>
</trkseg></trk>
</gpx>
www.letsnurture.com
www.letsnurture.com
Visualize your Fitness Data
Follow us on
https://www.facebook.com/LetsNurture
https://twitter.com/letsnurture
http://www.linkedin.com/company/letsnurture
Mail Us on
info@letsnurture.om
www.letsnurture.com | www.letsnurture.co.uk

Weitere ähnliche Inhalte

Andere mochten auch

Fullsix - Facebook Marketing Bootcamp
Fullsix - Facebook Marketing BootcampFullsix - Facebook Marketing Bootcamp
Fullsix - Facebook Marketing BootcampFullsix Italia
 
Scotgrip products portfolio
Scotgrip products portfolioScotgrip products portfolio
Scotgrip products portfolioRalph Prise
 
A fractographic study on toughening of epoxy resin using ground tyre rubber
A fractographic study on toughening of epoxy resin using ground tyre rubberA fractographic study on toughening of epoxy resin using ground tyre rubber
A fractographic study on toughening of epoxy resin using ground tyre rubberFernanda Souza
 
Web Quest
Web QuestWeb Quest
Web Questeag2014
 
NewMow Lawn Mowing In NYC
NewMow Lawn Mowing In NYCNewMow Lawn Mowing In NYC
NewMow Lawn Mowing In NYCParkerekraP
 
Terremotos e tsunamis
Terremotos e tsunamisTerremotos e tsunamis
Terremotos e tsunamispablovg4
 
รอยธรรมคำสอนพระเถระ 2
รอยธรรมคำสอนพระเถระ  2รอยธรรมคำสอนพระเถระ  2
รอยธรรมคำสอนพระเถระ 2Na Tak
 
เรื่องประทับใจ ให้ข้อคิด 5
เรื่องประทับใจ ให้ข้อคิด 5เรื่องประทับใจ ให้ข้อคิด 5
เรื่องประทับใจ ให้ข้อคิด 5Na Tak
 
Feasibility study
Feasibility  studyFeasibility  study
Feasibility studyjilly17
 
Magento store-locator
Magento store-locatorMagento store-locator
Magento store-locatorKetan Raval
 
๒๕ คำปราชญ์จากจีน
๒๕ คำปราชญ์จากจีน๒๕ คำปราชญ์จากจีน
๒๕ คำปราชญ์จากจีนNa Tak
 
Krause corporation ops4505
Krause corporation ops4505Krause corporation ops4505
Krause corporation ops4505kahogan62
 
Bicycle’s at your service
Bicycle’s at your serviceBicycle’s at your service
Bicycle’s at your servicepistolpete86
 

Andere mochten auch (18)

beTarte
beTartebeTarte
beTarte
 
Angie rodriguez 4,9
Angie rodriguez 4,9Angie rodriguez 4,9
Angie rodriguez 4,9
 
Fullsix - Facebook Marketing Bootcamp
Fullsix - Facebook Marketing BootcampFullsix - Facebook Marketing Bootcamp
Fullsix - Facebook Marketing Bootcamp
 
Dna
DnaDna
Dna
 
Scotgrip products portfolio
Scotgrip products portfolioScotgrip products portfolio
Scotgrip products portfolio
 
Tooni standart durs 2012 2013
Tooni standart durs 2012 2013Tooni standart durs 2012 2013
Tooni standart durs 2012 2013
 
A fractographic study on toughening of epoxy resin using ground tyre rubber
A fractographic study on toughening of epoxy resin using ground tyre rubberA fractographic study on toughening of epoxy resin using ground tyre rubber
A fractographic study on toughening of epoxy resin using ground tyre rubber
 
Web Quest
Web QuestWeb Quest
Web Quest
 
NewMow Lawn Mowing In NYC
NewMow Lawn Mowing In NYCNewMow Lawn Mowing In NYC
NewMow Lawn Mowing In NYC
 
Terremotos e tsunamis
Terremotos e tsunamisTerremotos e tsunamis
Terremotos e tsunamis
 
รอยธรรมคำสอนพระเถระ 2
รอยธรรมคำสอนพระเถระ  2รอยธรรมคำสอนพระเถระ  2
รอยธรรมคำสอนพระเถระ 2
 
เรื่องประทับใจ ให้ข้อคิด 5
เรื่องประทับใจ ให้ข้อคิด 5เรื่องประทับใจ ให้ข้อคิด 5
เรื่องประทับใจ ให้ข้อคิด 5
 
Feasibility study
Feasibility  studyFeasibility  study
Feasibility study
 
Magento store-locator
Magento store-locatorMagento store-locator
Magento store-locator
 
๒๕ คำปราชญ์จากจีน
๒๕ คำปราชญ์จากจีน๒๕ คำปราชญ์จากจีน
๒๕ คำปราชญ์จากจีน
 
Krause corporation ops4505
Krause corporation ops4505Krause corporation ops4505
Krause corporation ops4505
 
Bicycle’s at your service
Bicycle’s at your serviceBicycle’s at your service
Bicycle’s at your service
 
Parts of the plants1
Parts of the plants1Parts of the plants1
Parts of the plants1
 

Ähnlich wie Garmin api integration

Server monitoring using grafana and prometheus
Server monitoring using grafana and prometheusServer monitoring using grafana and prometheus
Server monitoring using grafana and prometheusCeline George
 
Internet of Things: Vehicular Tracking System
Internet of Things: Vehicular Tracking SystemInternet of Things: Vehicular Tracking System
Internet of Things: Vehicular Tracking SystemPrasannPatel4
 
Helm Charts Security 101
Helm Charts Security 101Helm Charts Security 101
Helm Charts Security 101Deep Datta
 
Programming IoT Gateways with macchina.io
Programming IoT Gateways with macchina.ioProgramming IoT Gateways with macchina.io
Programming IoT Gateways with macchina.ioGünter Obiltschnig
 
Android 5.0 Lollipop platform change investigation report
Android 5.0 Lollipop platform change investigation reportAndroid 5.0 Lollipop platform change investigation report
Android 5.0 Lollipop platform change investigation reporthidenorly
 
KDOT Aviation Portal Update: Cesium, FME
KDOT Aviation Portal Update: Cesium, FMEKDOT Aviation Portal Update: Cesium, FME
KDOT Aviation Portal Update: Cesium, FMESafe Software
 
Python time series analysis and visualization for self-driving cars
Python time series analysis and visualization for self-driving carsPython time series analysis and visualization for self-driving cars
Python time series analysis and visualization for self-driving carsAndreas Pawlik
 
mago3D Technical Workshop Material(New Version)
mago3D Technical Workshop Material(New Version)mago3D Technical Workshop Material(New Version)
mago3D Technical Workshop Material(New Version)SANGHEE SHIN
 
ArcSight Express Release Notes Version 3.0 featuring ESM + CORR-Engine
ArcSight Express Release Notes Version 3.0 featuring ESM + CORR-EngineArcSight Express Release Notes Version 3.0 featuring ESM + CORR-Engine
ArcSight Express Release Notes Version 3.0 featuring ESM + CORR-EngineProtect724
 
map3d_mapguide_postgis
map3d_mapguide_postgismap3d_mapguide_postgis
map3d_mapguide_postgisPrasad PANDIT
 
Geocortex technology update
Geocortex technology update  Geocortex technology update
Geocortex technology update Geodata AS
 
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NCAndroid Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NCJim Tochterman
 
How to Build a Telegraf Plugin by Noah Crowley
How to Build a Telegraf Plugin by Noah CrowleyHow to Build a Telegraf Plugin by Noah Crowley
How to Build a Telegraf Plugin by Noah CrowleyInfluxData
 
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxDataBuilding a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxDataInfluxData
 
CartoView - Configure and Publish Apps for GeoNode
CartoView - Configure and Publish Apps for GeoNodeCartoView - Configure and Publish Apps for GeoNode
CartoView - Configure and Publish Apps for GeoNodeAdam Joseph
 

Ähnlich wie Garmin api integration (20)

Server monitoring using grafana and prometheus
Server monitoring using grafana and prometheusServer monitoring using grafana and prometheus
Server monitoring using grafana and prometheus
 
Internet of Things: Vehicular Tracking System
Internet of Things: Vehicular Tracking SystemInternet of Things: Vehicular Tracking System
Internet of Things: Vehicular Tracking System
 
Helm Charts Security 101
Helm Charts Security 101Helm Charts Security 101
Helm Charts Security 101
 
Programming IoT Gateways with macchina.io
Programming IoT Gateways with macchina.ioProgramming IoT Gateways with macchina.io
Programming IoT Gateways with macchina.io
 
Global mapperhelp
Global mapperhelpGlobal mapperhelp
Global mapperhelp
 
Android 5.0 Lollipop platform change investigation report
Android 5.0 Lollipop platform change investigation reportAndroid 5.0 Lollipop platform change investigation report
Android 5.0 Lollipop platform change investigation report
 
PRTG
PRTGPRTG
PRTG
 
KDOT Aviation Portal Update: Cesium, FME
KDOT Aviation Portal Update: Cesium, FMEKDOT Aviation Portal Update: Cesium, FME
KDOT Aviation Portal Update: Cesium, FME
 
Python time series analysis and visualization for self-driving cars
Python time series analysis and visualization for self-driving carsPython time series analysis and visualization for self-driving cars
Python time series analysis and visualization for self-driving cars
 
mago3D Technical Workshop Material(New Version)
mago3D Technical Workshop Material(New Version)mago3D Technical Workshop Material(New Version)
mago3D Technical Workshop Material(New Version)
 
ArcSight Express Release Notes Version 3.0 featuring ESM + CORR-Engine
ArcSight Express Release Notes Version 3.0 featuring ESM + CORR-EngineArcSight Express Release Notes Version 3.0 featuring ESM + CORR-Engine
ArcSight Express Release Notes Version 3.0 featuring ESM + CORR-Engine
 
map3d_mapguide_postgis
map3d_mapguide_postgismap3d_mapguide_postgis
map3d_mapguide_postgis
 
Geocortex technology update
Geocortex technology update  Geocortex technology update
Geocortex technology update
 
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NCAndroid Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
 
ArcMC 2.6 Release Notes
ArcMC 2.6 Release NotesArcMC 2.6 Release Notes
ArcMC 2.6 Release Notes
 
How to Build a Telegraf Plugin by Noah Crowley
How to Build a Telegraf Plugin by Noah CrowleyHow to Build a Telegraf Plugin by Noah Crowley
How to Build a Telegraf Plugin by Noah Crowley
 
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxDataBuilding a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
Building a Telegraf Plugin by Noah Crowly | Developer Advocate | InfluxData
 
CGI by rj
CGI by rjCGI by rj
CGI by rj
 
CartoView - Configure and Publish Apps for GeoNode
CartoView - Configure and Publish Apps for GeoNodeCartoView - Configure and Publish Apps for GeoNode
CartoView - Configure and Publish Apps for GeoNode
 
INOVA GIS Platform
INOVA GIS PlatformINOVA GIS Platform
INOVA GIS Platform
 

Mehr von Ketan Raval

Amazon Alexa Auto Software Development Kit (SDK)
Amazon Alexa Auto Software Development Kit (SDK)Amazon Alexa Auto Software Development Kit (SDK)
Amazon Alexa Auto Software Development Kit (SDK)Ketan Raval
 
Proximity Marketing Solutions enhancing Businesses leveraging iBeacon SDK Int...
Proximity Marketing Solutions enhancing Businesses leveraging iBeacon SDK Int...Proximity Marketing Solutions enhancing Businesses leveraging iBeacon SDK Int...
Proximity Marketing Solutions enhancing Businesses leveraging iBeacon SDK Int...Ketan Raval
 
Zero ui future is here
Zero ui   future is hereZero ui   future is here
Zero ui future is hereKetan Raval
 
Android n and beyond
Android n and beyondAndroid n and beyond
Android n and beyondKetan Raval
 
IoT and Future of Connected world
IoT and Future of Connected worldIoT and Future of Connected world
IoT and Future of Connected worldKetan Raval
 
#Instagram API Get visibility you always wanted
#Instagram API   Get visibility you always wanted#Instagram API   Get visibility you always wanted
#Instagram API Get visibility you always wantedKetan Raval
 
Keynote - Devfest 2015 organized by GDG Ahmedabad
Keynote - Devfest 2015 organized by GDG AhmedabadKeynote - Devfest 2015 organized by GDG Ahmedabad
Keynote - Devfest 2015 organized by GDG AhmedabadKetan Raval
 
Android notifications
Android notificationsAndroid notifications
Android notificationsKetan Raval
 
How to make your Mobile App HIPPA Compliant
How to make your Mobile App HIPPA CompliantHow to make your Mobile App HIPPA Compliant
How to make your Mobile App HIPPA CompliantKetan Raval
 
3 d touch a true game changer
3 d touch a true game changer3 d touch a true game changer
3 d touch a true game changerKetan Raval
 
OBD Mobile App - Fault Codes, Driving Behaviour and Fuel Economy
OBD Mobile App - Fault Codes, Driving Behaviour and Fuel EconomyOBD Mobile App - Fault Codes, Driving Behaviour and Fuel Economy
OBD Mobile App - Fault Codes, Driving Behaviour and Fuel EconomyKetan Raval
 
Vehicle to vehicle communication using gps
Vehicle to vehicle communication using gpsVehicle to vehicle communication using gps
Vehicle to vehicle communication using gpsKetan Raval
 
Obd how to guide
Obd how to guideObd how to guide
Obd how to guideKetan Raval
 
Beacon The Google Way
Beacon The Google WayBeacon The Google Way
Beacon The Google WayKetan Raval
 
Edge detection iOS application
Edge detection iOS applicationEdge detection iOS application
Edge detection iOS applicationKetan Raval
 
Google calendar integration in iOS app
Google calendar integration in iOS appGoogle calendar integration in iOS app
Google calendar integration in iOS appKetan Raval
 
Big data cloudcomputing
Big data cloudcomputingBig data cloudcomputing
Big data cloudcomputingKetan Raval
 
All about Apple Watchkit
All about Apple WatchkitAll about Apple Watchkit
All about Apple WatchkitKetan Raval
 
How to upload application on iTune store
How to upload application on iTune storeHow to upload application on iTune store
How to upload application on iTune storeKetan Raval
 

Mehr von Ketan Raval (20)

Amazon Alexa Auto Software Development Kit (SDK)
Amazon Alexa Auto Software Development Kit (SDK)Amazon Alexa Auto Software Development Kit (SDK)
Amazon Alexa Auto Software Development Kit (SDK)
 
Proximity Marketing Solutions enhancing Businesses leveraging iBeacon SDK Int...
Proximity Marketing Solutions enhancing Businesses leveraging iBeacon SDK Int...Proximity Marketing Solutions enhancing Businesses leveraging iBeacon SDK Int...
Proximity Marketing Solutions enhancing Businesses leveraging iBeacon SDK Int...
 
Keynote 2016
Keynote 2016Keynote 2016
Keynote 2016
 
Zero ui future is here
Zero ui   future is hereZero ui   future is here
Zero ui future is here
 
Android n and beyond
Android n and beyondAndroid n and beyond
Android n and beyond
 
IoT and Future of Connected world
IoT and Future of Connected worldIoT and Future of Connected world
IoT and Future of Connected world
 
#Instagram API Get visibility you always wanted
#Instagram API   Get visibility you always wanted#Instagram API   Get visibility you always wanted
#Instagram API Get visibility you always wanted
 
Keynote - Devfest 2015 organized by GDG Ahmedabad
Keynote - Devfest 2015 organized by GDG AhmedabadKeynote - Devfest 2015 organized by GDG Ahmedabad
Keynote - Devfest 2015 organized by GDG Ahmedabad
 
Android notifications
Android notificationsAndroid notifications
Android notifications
 
How to make your Mobile App HIPPA Compliant
How to make your Mobile App HIPPA CompliantHow to make your Mobile App HIPPA Compliant
How to make your Mobile App HIPPA Compliant
 
3 d touch a true game changer
3 d touch a true game changer3 d touch a true game changer
3 d touch a true game changer
 
OBD Mobile App - Fault Codes, Driving Behaviour and Fuel Economy
OBD Mobile App - Fault Codes, Driving Behaviour and Fuel EconomyOBD Mobile App - Fault Codes, Driving Behaviour and Fuel Economy
OBD Mobile App - Fault Codes, Driving Behaviour and Fuel Economy
 
Vehicle to vehicle communication using gps
Vehicle to vehicle communication using gpsVehicle to vehicle communication using gps
Vehicle to vehicle communication using gps
 
Obd how to guide
Obd how to guideObd how to guide
Obd how to guide
 
Beacon The Google Way
Beacon The Google WayBeacon The Google Way
Beacon The Google Way
 
Edge detection iOS application
Edge detection iOS applicationEdge detection iOS application
Edge detection iOS application
 
Google calendar integration in iOS app
Google calendar integration in iOS appGoogle calendar integration in iOS app
Google calendar integration in iOS app
 
Big data cloudcomputing
Big data cloudcomputingBig data cloudcomputing
Big data cloudcomputing
 
All about Apple Watchkit
All about Apple WatchkitAll about Apple Watchkit
All about Apple Watchkit
 
How to upload application on iTune store
How to upload application on iTune storeHow to upload application on iTune store
How to upload application on iTune store
 

Kürzlich hochgeladen

VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...SUHANI PANDEY
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)Delhi Call girls
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...nilamkumrai
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdfMatthew Sinclair
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubaikojalkojal131
 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...roncy bisnoi
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableSeo
 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...SUHANI PANDEY
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirtrahman018755
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtrahman018755
 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...SUHANI PANDEY
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查ydyuyu
 
Microsoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftMicrosoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftAanSulistiyo
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...Neha Pandey
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdfMatthew Sinclair
 
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋nirzagarg
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...nirzagarg
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...tanu pandey
 

Kürzlich hochgeladen (20)

VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
( Pune ) VIP Baner Call Girls 🎗️ 9352988975 Sizzling | Escorts | Girls Are Re...
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
Sarola * Female Escorts Service in Pune | 8005736733 Independent Escorts & Da...
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
 
Microsoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftMicrosoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck Microsoft
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
 
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
💚😋 Bilaspur Escort Service Call Girls, 9352852248 ₹5000 To 25K With AC💚😋
 
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men  🔝mehsana🔝   Escorts...
➥🔝 7737669865 🔝▻ mehsana Call-girls in Women Seeking Men 🔝mehsana🔝 Escorts...
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 

Garmin api integration

  • 2. Types of Garmin API/SDK offerings The VIRB Network Services API gives you freedom to develop applications to discover, control, configure, stream and access media over Wi-Fi. The Connect IQ SDK contains all the necessary tools to build the different types of apps (watch faces, data fields, widgets and apps) for the Connect IQ platform. The Garmin Connect API gives you access this robust data. With the Connect API, the innovation possibilities are endless. www.letsnurture.com
  • 3. Types of Garmin API/SDK offerings Garmin Wellness API makes it easy to create a wellness program with wellness data from Garmin devices. Garmin fleet managment developer kit contains the communication protocols and system requirements for our Fleet Management Interface (FMI). Create custom maps that can be easily loaded onto Garmin devices with Map Product Creator (MPC). www.letsnurture.com
  • 4. Types of Garmin API/SDK offerings The Content Toolkit by Garmin gives you the tools to create secure points of interest (POIs) and customizable voices for our GPS devices. You can market your products to owners of our GPS systems, creating an entirely new ecosystem of content, devices and customers who are eager to expand the capability of their Garmin devices. www.letsnurture.com
  • 5. Access the Data from Garmin Connect Garmin Connect is the only online community created specifically for, and works seamlessly with, our Forerunner, Edge and fēnix products. Garmin Connect stores and analyzes end-user data and supports more than 30 different activity types. The Garmin Connect API gives you access this robust data. With the Connect API, the innovation possibilities are endless. www.letsnurture.com
  • 6. Access the Data from Garmin Connect API Features Potential access to data from millions of end users worldwide Access to full FIT files (or TCX files, depending on device) with minute- and second-level data Near real-time data pushed directly to developer server (it is your responsibility to have your servers accessible for data reception) www.letsnurture.com
  • 7. Access the Data from Garmin Connect What’s Included API and OAuthToken Advanced notification of upcoming API updates, including new and improved functionality Access to technical support Access to official Garmin Connect logo and branding requirements www.letsnurture.com
  • 8. Access the Data from Garmin Connect Back up data Export your activity for upload to other programs. From the Details page you can export a .TCX file for other fitness programs and .KML for Google Earth. From the Splits page you can export a CSV file with the details of your activity. www.letsnurture.com
  • 9. TCX FILES There are two versions of TCX files: TCX Course and TCX History. TCX Course files contain all the navigation to use with your Garmin Edge series devices. This is the most common file format that we recommend to get turn-by-turn navigation. TCX History files contain the entire track of the recorded ride including sensor information like heart rate, cadence, and power if applicable. Export as a TCX History if you wish to transfer a ride to another service or application for analysis. www.letsnurture.com
  • 10. GPX FILES There are two kinds of GPX files: GPX Track and GPX Route. GPX Track This file type contains the thousands of points used to draw the map. Your GPS will follow this track and is the next most common format we recommend for units that cannot use a TCX Course file. GPX Route only contains the cuesheet entries, and relies on the GPS device to calculate a route between each of the cuesheet entries. www.letsnurture.com
  • 11. Differences Since the maps inside the GPS unit are different than the Google maps used to plan the route, often times the route chosen by the GPS unit will be slightly different than the one planned using our site. Unless you know what you are doing, GPX Routes are not as useful and should be avoided. www.letsnurture.com
  • 12. Two reasons to choose GPX file: You have a GPS unit that doesn’t read TCX files. The eTrex, Oregon, Montana, and GPSmap series do not read TCX. You don’t care about riding a certain speed, and you don’t need the basic turn guidance offered by the TCX. If you have Garmin maps or OSM maps installed on a microSD card in your map-capable GPS unit, your GPS will provide native turn guidance and there is no need for the basic navigation offered by the TCX format. www.letsnurture.com
  • 13. Other File Types: FIT: Used by newer fitness units (Edge 500/800/810/1000, newer Forerunner watches). This file contains the ride data and is pulled off the unit to be uploaded to a site like the Ride with GPS Upload page. It is not used as an export format for navigation. KML: Not used as an export format for navigation on GPS devices, but a useful export for viewing a route or activity in Google Earth. CSV: Comma Separated Values, useful for importing into a spreadsheet program. This export option only includes the cues for printing and none of the navigation for GPS devices or the mobile app. www.letsnurture.com
  • 14. GPX Files & Xcode Xcode uses a standardized file type to simulate locations. The GPX spec defines many different ways to define a path or a set of geolocation coordinates. Xcode only uses the <wpt> tag so if you find a tool that generates <rte> or <trk> based gpx files, Xcode won't be able simulate your location properly. You can find more information about GPX files here: http://en.wikipedia.org/wiki/GPSeXchangeFormat www.letsnurture.com
  • 15. Using Xcode, we can simulate our locations two ways. The first way is to have the location simulated from application launch. To do this, we need to open up the Scheme Editor (Product->Scheme->Edit Scheme or Command+Shift+,) and make sure the "Allow Location Simulation" checkmark is checked. To import the freshly created gpx file, open the dropdown control and select "Add GPX File to Project...". Navigate to the file and select it and have Xcode copy the file into the destination group's folder. www.letsnurture.com
  • 17. Drag the framework file into the project's Frameworks group, and import the header file. #import <GPX/GPX.h> To parsing the GPX file, simply call the parse method : GPXRoot *root = [GPXParser parseGPXWithString:gpx]; www.letsnurture.com
  • 18. You can generate the GPX : GPXRoot *root = [GPXRoot rootWithCreator:@"Sample Application"]; GPXWaypoint *waypoint = [root newWaypointWithLatitude:35.658609f longitude:139.745447f]; waypoint.name = @"Tokyo Tower"; waypoint.comment = @"The old TV tower in Tokyo."; GPXTrack *track = [root newTrack]; track.name = @"My New Track"; [track newTrackpointWithLatitude:35.658609f longitude:139.745447f]; [track newTrackpointWithLatitude:35.758609f longitude:139.745447f]; [track newTrackpointWithLatitude:35.828609f longitude:139.745447f]; www.letsnurture.com
  • 19. What are the benefits of GPX? Here are some of the benefits that GPX provides: GPX allows you to exchange data with a growing list of programs for Windows, MacOS, Linux, Palm, and PocketPC. GPX can be transformed into other file formats using a simple webpage or converter program. GPX is based on the XML standard, so many of the new programs you use (Microsoft Excel, for example) can read GPX files. GPX makes it easy for anyone on the web to develop new features which will instantly work with your favorite programs. www.letsnurture.com
  • 20. Sample GPX File <?xml version="1.0" encoding="UTF-8"?> <gpx version="1.0"> <name>Example gpx</name> <wpt lat="46.57638889" lon="8.89263889"> <ele>2372</ele> <name>LAGORETICO</name> </wpt> <trk><name>Example gpx</name><number>1</number><trkseg> <trkpt lat="46.57608333" lon="8.89241667"><ele>2376</ele><time>2007-10- 14T10:09:57Z</time></trkpt> <trkpt lat="46.57619444" lon="8.89252778"><ele>2375</ele><time>2007-10- 14T10:10:52Z</time></trkpt> <trkpt lat="46.57641667" lon="8.89266667"><ele>2372</ele><time>2007-10- 14T10:12:39Z</time></trkpt> <trkpt lat="46.57650000" lon="8.89280556"><ele>2373</ele><time>2007-10- 14T10:13:12Z</time></trkpt> <trkpt lat="46.57638889" lon="8.89302778"><ele>2374</ele><time>2007-10- 14T10:13:20Z</time></trkpt> <trkpt lat="46.57652778" lon="8.89322222"><ele>2375</ele><time>2007-10- 14T10:13:48Z</time></trkpt> <trkpt lat="46.57661111" lon="8.89344444"><ele>2376</ele><time>2007-10- 14T10:14:08Z</time></trkpt> </trkseg></trk> </gpx> www.letsnurture.com