High-level GPS location descriptors ios swift












-1















I was wondering if there's any API that provides the meaning of the GPS coordinates. For example, there'd be some function that'd return the user's current location as an English interpretation (e.g. home, work).



I currently implement this myself by asking users to label their current GPS locations using a drop down home. I then label future GPS long/lat based on distance. For example, if a user marked (72,30.1) as their home and the user is now at (72, 30.2), I'd infer that they still are at home.



Anyone came across anything like this?



For example,



CLLocationManager.currentLocationContext() //returns "home", "work", 









share|improve this question

























  • Do you mean e.g. visits, developer.apple.com/documentation/corelocation/…

    – matt
    Dec 29 '18 at 19:48













  • Or “significant location monitoring” ?

    – matt
    Dec 29 '18 at 19:48











  • I think the visits location service is close, but it's not what I'm looking for. I'm trying to find an API that summarizes raw GPS into something meaningful (i.e. the current long/lat indicates that the user is at their home or at their work).

    – mattsap
    Dec 30 '18 at 1:40











  • I've updated the question to clarify. Sorry for the confusion.

    – mattsap
    Dec 30 '18 at 1:49











  • Well, if you're using visits (CLVisit), you learn what places are important to the user and can save them. Now you can look to see if where the user is now is one effectively of those.

    – matt
    Dec 30 '18 at 6:23
















-1















I was wondering if there's any API that provides the meaning of the GPS coordinates. For example, there'd be some function that'd return the user's current location as an English interpretation (e.g. home, work).



I currently implement this myself by asking users to label their current GPS locations using a drop down home. I then label future GPS long/lat based on distance. For example, if a user marked (72,30.1) as their home and the user is now at (72, 30.2), I'd infer that they still are at home.



Anyone came across anything like this?



For example,



CLLocationManager.currentLocationContext() //returns "home", "work", 









share|improve this question

























  • Do you mean e.g. visits, developer.apple.com/documentation/corelocation/…

    – matt
    Dec 29 '18 at 19:48













  • Or “significant location monitoring” ?

    – matt
    Dec 29 '18 at 19:48











  • I think the visits location service is close, but it's not what I'm looking for. I'm trying to find an API that summarizes raw GPS into something meaningful (i.e. the current long/lat indicates that the user is at their home or at their work).

    – mattsap
    Dec 30 '18 at 1:40











  • I've updated the question to clarify. Sorry for the confusion.

    – mattsap
    Dec 30 '18 at 1:49











  • Well, if you're using visits (CLVisit), you learn what places are important to the user and can save them. Now you can look to see if where the user is now is one effectively of those.

    – matt
    Dec 30 '18 at 6:23














-1












-1








-1








I was wondering if there's any API that provides the meaning of the GPS coordinates. For example, there'd be some function that'd return the user's current location as an English interpretation (e.g. home, work).



I currently implement this myself by asking users to label their current GPS locations using a drop down home. I then label future GPS long/lat based on distance. For example, if a user marked (72,30.1) as their home and the user is now at (72, 30.2), I'd infer that they still are at home.



Anyone came across anything like this?



For example,



CLLocationManager.currentLocationContext() //returns "home", "work", 









share|improve this question
















I was wondering if there's any API that provides the meaning of the GPS coordinates. For example, there'd be some function that'd return the user's current location as an English interpretation (e.g. home, work).



I currently implement this myself by asking users to label their current GPS locations using a drop down home. I then label future GPS long/lat based on distance. For example, if a user marked (72,30.1) as their home and the user is now at (72, 30.2), I'd infer that they still are at home.



Anyone came across anything like this?



For example,



CLLocationManager.currentLocationContext() //returns "home", "work", 






ios gps






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 30 '18 at 3:38







mattsap

















asked Dec 29 '18 at 18:57









mattsapmattsap

3,3221726




3,3221726













  • Do you mean e.g. visits, developer.apple.com/documentation/corelocation/…

    – matt
    Dec 29 '18 at 19:48













  • Or “significant location monitoring” ?

    – matt
    Dec 29 '18 at 19:48











  • I think the visits location service is close, but it's not what I'm looking for. I'm trying to find an API that summarizes raw GPS into something meaningful (i.e. the current long/lat indicates that the user is at their home or at their work).

    – mattsap
    Dec 30 '18 at 1:40











  • I've updated the question to clarify. Sorry for the confusion.

    – mattsap
    Dec 30 '18 at 1:49











  • Well, if you're using visits (CLVisit), you learn what places are important to the user and can save them. Now you can look to see if where the user is now is one effectively of those.

    – matt
    Dec 30 '18 at 6:23



















  • Do you mean e.g. visits, developer.apple.com/documentation/corelocation/…

    – matt
    Dec 29 '18 at 19:48













  • Or “significant location monitoring” ?

    – matt
    Dec 29 '18 at 19:48











  • I think the visits location service is close, but it's not what I'm looking for. I'm trying to find an API that summarizes raw GPS into something meaningful (i.e. the current long/lat indicates that the user is at their home or at their work).

    – mattsap
    Dec 30 '18 at 1:40











  • I've updated the question to clarify. Sorry for the confusion.

    – mattsap
    Dec 30 '18 at 1:49











  • Well, if you're using visits (CLVisit), you learn what places are important to the user and can save them. Now you can look to see if where the user is now is one effectively of those.

    – matt
    Dec 30 '18 at 6:23

















Do you mean e.g. visits, developer.apple.com/documentation/corelocation/…

– matt
Dec 29 '18 at 19:48







Do you mean e.g. visits, developer.apple.com/documentation/corelocation/…

– matt
Dec 29 '18 at 19:48















Or “significant location monitoring” ?

– matt
Dec 29 '18 at 19:48





Or “significant location monitoring” ?

– matt
Dec 29 '18 at 19:48













I think the visits location service is close, but it's not what I'm looking for. I'm trying to find an API that summarizes raw GPS into something meaningful (i.e. the current long/lat indicates that the user is at their home or at their work).

– mattsap
Dec 30 '18 at 1:40





I think the visits location service is close, but it's not what I'm looking for. I'm trying to find an API that summarizes raw GPS into something meaningful (i.e. the current long/lat indicates that the user is at their home or at their work).

– mattsap
Dec 30 '18 at 1:40













I've updated the question to clarify. Sorry for the confusion.

– mattsap
Dec 30 '18 at 1:49





I've updated the question to clarify. Sorry for the confusion.

– mattsap
Dec 30 '18 at 1:49













Well, if you're using visits (CLVisit), you learn what places are important to the user and can save them. Now you can look to see if where the user is now is one effectively of those.

– matt
Dec 30 '18 at 6:23





Well, if you're using visits (CLVisit), you learn what places are important to the user and can save them. Now you can look to see if where the user is now is one effectively of those.

– matt
Dec 30 '18 at 6:23












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53972493%2fhigh-level-gps-location-descriptors-ios-swift%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53972493%2fhigh-level-gps-location-descriptors-ios-swift%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Monofisismo

Angular Downloading a file using contenturl with Basic Authentication

Olmecas