Suunto app Forum Suunto Community Forum
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    ANGEL MODE... When your watch detect you are lost and are out of route

    Scheduled Pinned Locked Moved Suunto 9
    49 Posts 10 Posters 2.5k Views 9 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Mister PYCM Offline
      Mister PYC Silver Members @Mff73
      last edited by

      @mff73 said in ANGEL MODE... When your watch detect you are lost and are out of route:

      inning is already implemented,

      The problem is elsewhere … today if you see my example, the watch acted as if she was a kid or my wife sulking because I was just more than 100 m far from the route all along.

      Your rq is correct, I could have also stored the BEG and END or my route as POI (remember the BEG also because in my example I was not precisely at the BEG I was thinking). this is

      1. useless as already the GPX have them – open a GPX in a notepad you will see –
      2. hence consuming memory slot for nothing 3
      3. having stored them, count the number of manipulation it will requires you to locate yourself with these 2 points and not this angel mode. you will have to ask the navigation to BEG, go to compass, then ask navigation to END, go to compass, then ask again the navigation to your route … here you will have he 2 angles and distance straight immediately by a simple central click

      All is possible in IT
      Driven by you fear you stay on the ground, driven by your dreams you fly

      1 Reply Last reply Reply Quote 0
      • Mister PYCM Offline
        Mister PYC Silver Members @Tomas5
        last edited by

        @tomas5

        Hello Tomas,

        Do not worry, in this forum for the first time, I saw only gentlemen discussing and sometimes challenging each others but never mock wickely the others … very different from social networks

        I’m an IT engineer.

        If I was having access to the SUUNTO code, developing this ANGEL mode will have been a matter of 1 or 2 days max. the watch is on a route, so I can find easily in its GPX file its first waypoint and last waypoint, the COMPASS is already developed, so I just have to instantiate it 2 times on a click on central button (one time for BEG, one for END), the computation of distance, ETE, ETA is already here on BEARING navigation, I reuse it on these 2 points and put results in the fields of POI and end of itinery is the guy was displaying them in one of his screen – otherwise he will just have he azimut from the compass) … it remain the display of the angel icon …
        That’s it.
        So this will not damage the development effort

        Concerning your list of features … I have also plenty of others which I feel important that differs from yours :

        • Revisit the screens to allow better lisibility for visualy impaired people
        • Faster access to the compass and have the possibility to add it as a screen of exercise mode (even if there is no navigation currently)
        • Possibility to change sort order of menus (for example move up altimeter)
        • This beautiful SUUNTO plus weather screen (or a new screen on weather forecast) available in watch and exercice modes.
        • Better display when pressing on center button (not only the date, time battery) but for example ALTIMETER, COMPASS, WEATHER, ALARM

        So here it is depending a lot on the way we do sports. I personnaly do not care of teh watch to indicate me my sleeping, stress, or to pods. I’m just a mountainers, not a runner.

        All is possible in IT
        Driven by you fear you stay on the ground, driven by your dreams you fly

        1 Reply Last reply Reply Quote 1
        • Dimitrios KanellopoulosD Offline
          Dimitrios Kanellopoulos Community Manager
          last edited by

          @mister-pyc said in ANGEL MODE... When your watch detect you are lost and are out of route:

          If I was having access to the SUUNTO code, developing this ANGEL mode will have been a matter of 1 or 2 days max.

          Maybe 1 month 😅

          Community Manager / Admin @Suunto
          Creator of Quantified-Self.io
          youtube.com/c/dimitrioskanellopoulos
          https://instagram.com/dimitrioskanellopoulos
          https://www.strava.com/athletes/7586105

          ? 1 Reply Last reply Reply Quote 2
          • ? Offline
            A Former User @Dimitrios Kanellopoulos
            last edited by

            @dimitrios-kanellopoulos said in ANGEL MODE... When your watch detect you are lost and are out of route:

            @mister-pyc said in ANGEL MODE... When your watch detect you are lost and are out of route:

            If I was having access to the SUUNTO code, developing this ANGEL mode will have been a matter of 1 or 2 days max.

            Maybe 1 month 😅

            Plus the testing on all conditions on various devices no?

            Dimitrios KanellopoulosD 1 Reply Last reply Reply Quote 2
            • Dimitrios KanellopoulosD Offline
              Dimitrios Kanellopoulos Community Manager @Guest
              last edited by

              @andré-faria that is afterwards. About 2-3 weeks.

              Community Manager / Admin @Suunto
              Creator of Quantified-Self.io
              youtube.com/c/dimitrioskanellopoulos
              https://instagram.com/dimitrioskanellopoulos
              https://www.strava.com/athletes/7586105

              Mister PYCM 1 Reply Last reply Reply Quote 1
              • Mister PYCM Offline
                Mister PYC Silver Members @Dimitrios Kanellopoulos
                last edited by Mister PYC

                @dimitrios-kanellopoulos

                Hope you are you kidding ??? 🙂 … we are no more in waterfall model but now in Agile … so is it not a matter of 1 sprint ? 😉 😉 😉
                I’m pushing you a little bit … but for a POC 1 or 2 days should suffise, after … for a LIVE mode … you are right there are some more tests to perform and may be some fine tuning …

                But the point is the following :

                Suunto dev folks have absolutely all the technical elements :

                • The compass in which you set a bearing position and it does the job
                  no test needed here it works already, isnt’it 🙂
                • the GPX loaded
                • the boolean telling you if YES or NO you are out of route …
                • the biggest difficulties is to search in the GPX file for the last way point (the first one being trivial) … I hope you agree with me it is still simple … and … there is not yet the COMPASS displayed in the exercise view, so effectivelly to be added.
                • No over complexity at first glance, no compass with 2 arrows pointing in the same screen BEGIN and END even if I like it
                • No over complexity to compute the nearest point on the route to go straight, this is a false good idea

                some pseudo code most surely too simple I admit 🙂

                In the code that revisit if out of route or not

                        AngelMode = false 
                	Switch Navigation mode is	
                	{
                		= NO 
                		{
                			Compass 1 Point = null
                			Compass 2 Point = null
                		}
                		= Bearing to a POI 
                		{
                			Compass 1 Point = this point
                			Compass 2 Point = null
                		}
                		= in a Route 
                		{
                			if OutOfRoute detected 
                			{
                				AngelMode = true
                				Compass 1 Point = GPX BEGIN point
                				Compass 2 Point = GPX END point 
                			} 
                			else 
                			{
                				Compass 1 Point = GPX next way point
                				Compass 2 Point = GPX END Point 	
                			}
                		}
                	}
                

                .
                In the code that manage the click on Central button
                .

                	Switch next_screen_to_display is 
                	{
                		= Compass 1 
                		{
                			DISPLAY_COMPASS_SCREEN
                			if compass point 1 <> null 
                			{
                				show bearing navigation to point 1
                				if angel_mode = true 
                				{
                					show Angel icon
                				} 
                			}
                			else  
                			{
                				just show the classical compass
                			}
                		}
                		= Compass 2 
                		{
                			if navigation on route is false
                			{
                				Move to the screen which is after
                				// A second compass is useless if not on a route
                			}
                			else
                			{
                				DISPLAY_COMPASS_SCREEN
                				show bearing navigation to point 2
                				if angel_mode = true
                				{
                					show Angel icon
                				}
                			}
                		}
                		= A screen which has distance/ETE/ETA POI or Itinery
                		{
                			if angel_mode = false
                			{
                				classical computation of these info
                			}
                			if angel_mode = true
                			{
                				Distance, ETE, ETA of POI = bearing computation formula to compass 1 point
                				Distance, ETE, ETA of POI = bearing computation formula to compass 2 point
                				show Angel icon
                			}
                		}
                	}
                

                All is possible in IT
                Driven by you fear you stay on the ground, driven by your dreams you fly

                Dimitrios KanellopoulosD 1 Reply Last reply Reply Quote 0
                • Dimitrios KanellopoulosD Offline
                  Dimitrios Kanellopoulos Community Manager @Mister PYC
                  last edited by

                  @mister-pyc well yes 1 sprint (it’s 1month) and yes 2 days poc.

                  But that as a suunto plus I suppose with some already template.

                  That said I hope Suunto brings the suunto plus to us developers via apis etc. Then it’s end of story.

                  Community Manager / Admin @Suunto
                  Creator of Quantified-Self.io
                  youtube.com/c/dimitrioskanellopoulos
                  https://instagram.com/dimitrioskanellopoulos
                  https://www.strava.com/athletes/7586105

                  Mister PYCM 1 Reply Last reply Reply Quote 1
                  • Mister PYCM Offline
                    Mister PYC Silver Members @Dimitrios Kanellopoulos
                    last edited by Mister PYC

                    @dimitrios-kanellopoulos said in ANGEL MODE... When your watch detect you are lost and are out of route:

                    @mister-pyc well yes 1 sprint (it’s 1month) and yes 2 days poc.

                    But that as a suunto plus I suppose with some already template.

                    That said I hope Suunto brings the suunto plus to us developers via apis etc. Then it’s end of story.

                    Aïe aïe aïe it should be something that comes automatically on detection out of route and not S+ mode decked at beg of a navigation … Otherwise the benefit of this is lost.
                    I explain … the Beauty of navigation on a route is that your will have the full Gpx trace when you are back at home, no matter having been a good or an improvised one. Hence if you are out of route you should not stop your navigation for starting it again this time with a S+ angel mode … this mode should come naturally and disappear naturally when the watch is back on the route

                    All is possible in IT
                    Driven by you fear you stay on the ground, driven by your dreams you fly

                    DMytroD Dimitrios KanellopoulosD 2 Replies Last reply Reply Quote 0
                    • DMytroD Offline
                      DMytro @Mister PYC
                      last edited by

                      @mister-pyc why not though? Sure, automatic suggestion might be more pleasant. But manual s+ mode allows for better control from users perspective. Then, if it’s used often enough it might be integrated on a deeper level. Seems to be a good enough compromise, no?

                      1 Reply Last reply Reply Quote 1
                      • Dimitrios KanellopoulosD Offline
                        Dimitrios Kanellopoulos Community Manager @Mister PYC
                        last edited by

                        @mister-pyc well I meant it in the sense of adding your own widgets / s+ / code etc. With some logic.

                        In this way all users can build what they want no?

                        Community Manager / Admin @Suunto
                        Creator of Quantified-Self.io
                        youtube.com/c/dimitrioskanellopoulos
                        https://instagram.com/dimitrioskanellopoulos
                        https://www.strava.com/athletes/7586105

                        DMytroD 1 Reply Last reply Reply Quote 0
                        • DMytroD Offline
                          DMytro @Dimitrios Kanellopoulos
                          last edited by

                          @dimitrios-kanellopoulos wow this would be amazing! Could this theoretically be possible? I thought it couldn’t due to risk of having non-optimized apps.

                          Dimitrios KanellopoulosD 1 Reply Last reply Reply Quote 0
                          • Dimitrios KanellopoulosD Offline
                            Dimitrios Kanellopoulos Community Manager @DMytro
                            last edited by

                            @дима-мельниченко why not possible. It’s all a matter of prioritization.

                            Community Manager / Admin @Suunto
                            Creator of Quantified-Self.io
                            youtube.com/c/dimitrioskanellopoulos
                            https://instagram.com/dimitrioskanellopoulos
                            https://www.strava.com/athletes/7586105

                            DMytroD Tomas5T 2 Replies Last reply Reply Quote 0
                            • DMytroD Offline
                              DMytro @Dimitrios Kanellopoulos
                              last edited by

                              @dimitrios-kanellopoulos let me rephrase:)
                              I thought it wasn’t probable. But I would definitely dig writing own s+ apps. And with such lively forum, one could come up with really useful stuff.

                              1 Reply Last reply Reply Quote 2
                              • Tomas5T Offline
                                Tomas5 @Dimitrios Kanellopoulos
                                last edited by

                                @dimitrios-kanellopoulos this would be great feature to have. Old ambit has some possibility to write custom apps. This could be great. And i like idea of angel mode implemented as Suunto+ so only when activates it will show up. I know that direct integration would be great for some users (mountainers) but it will bring new not needed complexity to sports modes for others. Now user interface is simple enough and Suunto+ can solve this. Maybe possibility to allow multiple suunto+ screens at once would be great.

                                DMytroD Mister PYCM 2 Replies Last reply Reply Quote 2
                                • DMytroD Offline
                                  DMytro @Tomas5
                                  last edited by

                                  @tomas5 I mean if implemented automatically outside of s+, it could be managed by adding a toggle in the navigation submenu.
                                  Otherwise I agree.

                                  Mister PYCM 1 Reply Last reply Reply Quote 1
                                  • Mister PYCM Offline
                                    Mister PYC Silver Members @DMytro
                                    last edited by

                                    @дима-мельниченко

                                    There is 2 points here for not a good idea of a Suunto plus

                                    1. The problem of the S+ is that is it a choice to be done before you start the exercise and not in the middle when you face a no route situation, it will force you to stop your recording, engage again the same itinery with this time activating the s+ … not practical for a situation that the watch detected by herself (remember the watch is telling you that you are out of route, so can easily switch

                                    2. the initial idea is that you can stay for a long time out of route and in such situation you watch is sulk like a kid or my wife when you decided not to go where they want 🙂 and give you zero information anymore …

                                    See my example which started all my thinking of this angel mode here :. https://forum.suunto.com/topic/6751/is-it-a-navigation-bug-distance-ete-eta-remained-empty-despite-i-was-not-far-from-the-itinery/53?_=1626585265073

                                    Believe me … I happened when I was promoting the watch to a friend, precisely on this walk … and all along the watch was not more indicating anything about at minima the END waypoint of the itinery … which I hope you will agree with me, even if she was not able to compute following the forecasted route as we were no more on it, at minima she could have switched automatically to bearing navigation stragith to that point at least to give me indication on it.

                                    All is possible in IT
                                    Driven by you fear you stay on the ground, driven by your dreams you fly

                                    DMytroD 1 Reply Last reply Reply Quote 0
                                    • Mister PYCM Offline
                                      Mister PYC Silver Members @Tomas5
                                      last edited by Mister PYC

                                      @tomas5

                                      Hello thomas
                                      Please see my just above answer to Дима Мельниченко which explain why I think a S+ mode is not a good idea.

                                      Your remark on integration only to some user who might need this, is a fair remark.

                                      What about if …

                                      • it was you who has the possibility when you personalize the exercise screen to add a compass (I dream a little bit and assume Suunto could enhance its compass to put 2 arrows : one for the POI / END itinery or one for BEG and END of itinery in angel mode)
                                      • In the compass parameter you can decide to activate of not the Angel mode … if so, the watch will automatically switch to it when out of route and also shift the computation of distance, ETE, ETA from POI / END itinery to BEG and END of itinery.

                                      Doing that, the people it gives 3 possibilities

                                      • for those not interrested by having a COMPASS in their exercice, they do not have it
                                      • for those interrested by a COMPASS but not ANGEL mode they have it
                                      • for ME !!! I’m super happy 🙂 …

                                      Ps : I’m sure people in 2 will come to 3 soon 🙂 🙂 🙂

                                      All is possible in IT
                                      Driven by you fear you stay on the ground, driven by your dreams you fly

                                      Tomas5T 1 Reply Last reply Reply Quote 0
                                      • DMytroD Offline
                                        DMytro @Mister PYC
                                        last edited by

                                        @mister-pyc I think we might be able to switch s+ mid activity soon, this should at least partially eliminate your conserns.
                                        I’m not saying it’s better with s+, I’m saying it’s at least something. Or you think it’s either all in or all out?

                                        Mister PYCM 1 Reply Last reply Reply Quote 0
                                        • Mister PYCM Offline
                                          Mister PYC Silver Members @DMytro
                                          last edited by Mister PYC

                                          @dmytro

                                          Hello dmytro

                                          For sure better than nothing is always good.
                                          You know I’m just suggesting ideas, I have no super power to strongly say “I WANT THIS LIKE THAT !!!” 🙂 🙂

                                          if tomorrow the S+ can be selected in middle of the exercise then it is a very good alternative.

                                          So let’s revisit it in that angle and it could become like this

                                          • the S+ option could be selected in the middle of an exercise
                                          • we have now the possibility to add COMPASS when we personalize the exercise screens
                                            2 possibilities here :
                                          • either we have a new COMPASS with 2 arrows, in such case we just need to add one
                                          • or no change on COMPASS, in that case will be great if in the exercise view we can add 2 compass (one for POI one for END of itinery)
                                          • When we need the ANGEL mode, then we can call this S+ in the middle of the exercise and it will activate it

                                          Going that way … there is already a S+ SAFE mode, so … may be … it could be this mode that will add the ANGEL possibilities if we select it …
                                          it will add the S+ SAFE screen as today and automatically switch the bearing navigations from POI/newt waypoint/End itinery to BEG and END of itinery …

                                          May be a good idea.

                                          Another suggestion

                                          => I wil write a small post on it : what about if there is a new navigation OPTION = Navigate to one of the course waypoints and which allow us to select a course (or if we are inside a course already then propose naturally its waypoints) and we can select 1) the BEG, 2) the END … then … eventually … the others sorted by the route

                                          All is possible in IT
                                          Driven by you fear you stay on the ground, driven by your dreams you fly

                                          Dimitrios KanellopoulosD 1 Reply Last reply Reply Quote 1
                                          • Dimitrios KanellopoulosD Offline
                                            Dimitrios Kanellopoulos Community Manager @Mister PYC
                                            last edited by

                                            @mister-pyc this sounds over-engineered

                                            Community Manager / Admin @Suunto
                                            Creator of Quantified-Self.io
                                            youtube.com/c/dimitrioskanellopoulos
                                            https://instagram.com/dimitrioskanellopoulos
                                            https://www.strava.com/athletes/7586105

                                            Mister PYCM 2 Replies Last reply Reply Quote 3
                                            • First post
                                              Last post

                                            Suunto Terms | Privacy Policy