You Are Here:

Community: Wiki

This page was last modified on 24 September 2009, at 10:46.

CS001412 - Getting position data from TPositionInfoBase

From Forum Nokia Wiki



ID CS001412 Creation date June 9, 2009
Platform S60 3rd Edition
S60 5th Edition
Tested on devices Nokia 5800 XpressMusic
Category Symbian C++ Subcategory Location Based Services


Keywords (APIs, classes, methods, functions): TPositionInfoBase, TPosition
Reviewer Approved   

Overview

This snippet demonstrates two ways of using TPositionInfoBase:

  • getting the TPosition class from TPositionInfoBase
  • showing TPosition in textual format


Note: The Location capability is included in the self-signing capabilities of S60 3rd Edition, Feature Pack 2 and newer platforms.


MMP file

The following libraries and capabilities are required:

CAPABILITY     Location
LIBRARY lbs.lib


Header

#include <LbsPositionInfo.h> 
#include <LbsPosition.h>
 
// Degrees sign delimeter used in formatting methods
_LIT(KDelimDegree,"\xb0"); // "°" symbol
 
// Dot delimeter used in formatting methods
_LIT(KDelimDot,"\x2e"); // "." symbol
 
// Plus sign delimeter used in formatting methods
_LIT(KDelimPlus,"\x2b"); // "+" symbol
 
// Minus sign delimeter used in formatting methods
_LIT(KDelimMinus,"\x2d"); // "-" symbol
 
// Quotation sign delimeter used in formatting methods
_LIT(KDelimQuot,"\x22"); // "\"" symbol
 
// Apostrophe sign delimeter used in formatting methods
_LIT(KApostrophe,"\x27"); // "'" symbol
 
const TInt KDegreeLength = 19;


Source

void CMyClass::PositionUpdated(TPositionInfoBase& aPosInfo)
{
// Check if position information class type is TPositionInfo
if (aPosInfo.PositionClassType() & EPositionInfoClass)
{
// Cast the TPositionInfoBase object to TPositionInfo
TPositionInfo* posInfo = static_cast<TPositionInfo*>(&aPosInfo);
 
// Get position
TPosition position;
posInfo->GetPosition(position);
 
// Convert positions to the descriptors
TBuf<KDegreeLength> latitudeDegr;
GetDegreesString(position.Latitude(), latitudeDegr);
 
// Convert positions to the descriptors
TBuf<KDegreeLength> longitudeDegr;
GetDegreesString(position.Longitude(), longitudeDegr);
}
}


void CMyClass::GetDegreesString(
const TReal64& aDegrees,TBuf<KDegreeLength>& aDegreesString) const
{
const TReal KSecondsInMinute = 60.0;
const TInt KNumWidth = 3;
 
// If the aDegree is a proper number
if ( !Math::IsNaN(aDegrees) )
{
// Integer part of the degrees
TInt intDegrees = static_cast<TInt>(aDegrees);
 
// Positive float of the degrees
TReal64 realDegrees = aDegrees;
 
// Convert to positive values
if ( intDegrees < 0 )
{
intDegrees = -intDegrees;
realDegrees = -realDegrees;
}
 
// Minutes
TReal64 realMinutes = (realDegrees - intDegrees) * KSecondsInMinute;
 
// Integer part of the minutes
TInt intMinutes = static_cast<TInt>(realMinutes);
 
// Seconds
TReal64 realSeconds = (realMinutes - intMinutes) * KSecondsInMinute;
TInt intSeconds = static_cast<TInt>((realMinutes - intMinutes) * KSecondsInMinute);
 
// Check the sign of the result
if ( aDegrees >= 0 )
{
aDegreesString.Append(KDelimPlus);
}
else
{
aDegreesString.Append(KDelimMinus);
}
 
// Add the degrees
TInt64 value = intDegrees;
aDegreesString.AppendNum(value);
 
// Add the separator
aDegreesString.Append(KDelimDegree);
 
// Add the minutes
value = intMinutes;
aDegreesString.AppendNum(value);
 
// Add the separator
aDegreesString.Append(KApostrophe);
 
// Add the seconds
value = intSeconds;
aDegreesString.AppendNum(value);
 
// Add the separator
aDegreesString.Append(KDelimQuot);
 
// Add the separator
aDegreesString.Append(KDelimDot);
 
// Get six last digits
realSeconds -= intSeconds;
realSeconds *= 1000;
 
// Add the seconds
aDegreesString.AppendNumFixedWidth(static_cast<TInt>(realSeconds),
EDecimal, KNumWidth);
}
}


Postconditions

Position data is read from TPositionInfoBase.


See also

Related Wiki Articles

No related wiki articles found

Rate This

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2009 Nokia 
RDF Facets: qdcZidentifierQSxhttpE3aE2fE2fwikiE2eforumE2enokiaE2ecomE2findeE78E2ephpE2fTalkE3aE4cargeE5fscreenE5fsaverX qdcZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qdcZtypeQUqfntypeZCommunityContentQ qdcZtypeQUqfntypeZE52esourceQ qdcZtypeQUqfntypeZWebpageQ qdcZtypeQUqfntypeZWikiContentQ qdcZtypeQUqmarsZManagedE52esourceQ qdcZtypeQUqwebZInformationE52esourceQ qdcZtypeQUqwebZPageQ qdcZtypeQUqwebZE52esourceQ qdcZtypeQUqrdfsZE52esourceQ qfnZtypeQUqfntypeZCommunityContentQ qfnZtypeQUqfntypeZE52esourceQ qfnZtypeQUqfntypeZWebpageQ qfnZtypeQUqfntypeZWikiContentQ qmarsZlanguageQUxhttpE3aE2fE2fswE2enokiaE2ecomE2flanguageE2d1E2fenX qrdfZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qrdfZtypeQUqfntypeZCommunityContentQ qrdfZtypeQUqfntypeZE52esourceQ qrdfZtypeQUqfntypeZWebpageQ qrdfZtypeQUqfntypeZWikiContentQ qrdfZtypeQUqmarsZManagedE52esourceQ qrdfZtypeQUqwebZInformationE52esourceQ qrdfZtypeQUqwebZPageQ qrdfZtypeQUqwebZE52esourceQ qrdfZtypeQUqrdfsZE52esourceQ