Normalising angled Earth magnetic field












0












$begingroup$


Me and my team are participating in ESA Astro Pi challenge. Our program will ran on the ISS for 3 hours and we will our results back and analyze them.





We want to investigate the connection between the magnetic intensity measurements from Sense HAT magnetometer and predictions from the World Magnetic Model (WMM). We want to research the accuracy of the magnetometer on Sense HAT.



The program will get raw magnetometer data (X, Y and Z) in microteslas from Sense HAT and calculate values H and F as described in British geological survey's article (section 2.1). It will then save them to CSV file, along with timestamp and location calculated with ephem.



We will then compare values Z, H and F from ISS and WMM and create maps with our data and differences (like figures 6, 8 and 10). We will then research, how accurate are Sense HAT magnetometer data.





We want to compare our data with data from WMM to see how accurate is Sense HAT magnetometer, but we have a problem that orientation of magnetometer will always be different. Because of that, our data will always be (very) different from WMM so we won't be able to compare them correctly.



We talked with Astro Pi support team and they suggested to "normalise the angled measurements so it looks like they were taken by a device aligned North/South".



Unfortunately, we (and they) don't know how to do this, so they suggested to ask this question.



How can we do this? We have data for timestamp, ISS location (latitude, longitude, elevation), magnetic data (X, Y and Z) and also direction from the North.



We want to normalise our data so we will be able to correctly compare them with data from WMM.










share|cite|improve this question











$endgroup$

















    0












    $begingroup$


    Me and my team are participating in ESA Astro Pi challenge. Our program will ran on the ISS for 3 hours and we will our results back and analyze them.





    We want to investigate the connection between the magnetic intensity measurements from Sense HAT magnetometer and predictions from the World Magnetic Model (WMM). We want to research the accuracy of the magnetometer on Sense HAT.



    The program will get raw magnetometer data (X, Y and Z) in microteslas from Sense HAT and calculate values H and F as described in British geological survey's article (section 2.1). It will then save them to CSV file, along with timestamp and location calculated with ephem.



    We will then compare values Z, H and F from ISS and WMM and create maps with our data and differences (like figures 6, 8 and 10). We will then research, how accurate are Sense HAT magnetometer data.





    We want to compare our data with data from WMM to see how accurate is Sense HAT magnetometer, but we have a problem that orientation of magnetometer will always be different. Because of that, our data will always be (very) different from WMM so we won't be able to compare them correctly.



    We talked with Astro Pi support team and they suggested to "normalise the angled measurements so it looks like they were taken by a device aligned North/South".



    Unfortunately, we (and they) don't know how to do this, so they suggested to ask this question.



    How can we do this? We have data for timestamp, ISS location (latitude, longitude, elevation), magnetic data (X, Y and Z) and also direction from the North.



    We want to normalise our data so we will be able to correctly compare them with data from WMM.










    share|cite|improve this question











    $endgroup$















      0












      0








      0





      $begingroup$


      Me and my team are participating in ESA Astro Pi challenge. Our program will ran on the ISS for 3 hours and we will our results back and analyze them.





      We want to investigate the connection between the magnetic intensity measurements from Sense HAT magnetometer and predictions from the World Magnetic Model (WMM). We want to research the accuracy of the magnetometer on Sense HAT.



      The program will get raw magnetometer data (X, Y and Z) in microteslas from Sense HAT and calculate values H and F as described in British geological survey's article (section 2.1). It will then save them to CSV file, along with timestamp and location calculated with ephem.



      We will then compare values Z, H and F from ISS and WMM and create maps with our data and differences (like figures 6, 8 and 10). We will then research, how accurate are Sense HAT magnetometer data.





      We want to compare our data with data from WMM to see how accurate is Sense HAT magnetometer, but we have a problem that orientation of magnetometer will always be different. Because of that, our data will always be (very) different from WMM so we won't be able to compare them correctly.



      We talked with Astro Pi support team and they suggested to "normalise the angled measurements so it looks like they were taken by a device aligned North/South".



      Unfortunately, we (and they) don't know how to do this, so they suggested to ask this question.



      How can we do this? We have data for timestamp, ISS location (latitude, longitude, elevation), magnetic data (X, Y and Z) and also direction from the North.



      We want to normalise our data so we will be able to correctly compare them with data from WMM.










      share|cite|improve this question











      $endgroup$




      Me and my team are participating in ESA Astro Pi challenge. Our program will ran on the ISS for 3 hours and we will our results back and analyze them.





      We want to investigate the connection between the magnetic intensity measurements from Sense HAT magnetometer and predictions from the World Magnetic Model (WMM). We want to research the accuracy of the magnetometer on Sense HAT.



      The program will get raw magnetometer data (X, Y and Z) in microteslas from Sense HAT and calculate values H and F as described in British geological survey's article (section 2.1). It will then save them to CSV file, along with timestamp and location calculated with ephem.



      We will then compare values Z, H and F from ISS and WMM and create maps with our data and differences (like figures 6, 8 and 10). We will then research, how accurate are Sense HAT magnetometer data.





      We want to compare our data with data from WMM to see how accurate is Sense HAT magnetometer, but we have a problem that orientation of magnetometer will always be different. Because of that, our data will always be (very) different from WMM so we won't be able to compare them correctly.



      We talked with Astro Pi support team and they suggested to "normalise the angled measurements so it looks like they were taken by a device aligned North/South".



      Unfortunately, we (and they) don't know how to do this, so they suggested to ask this question.



      How can we do this? We have data for timestamp, ISS location (latitude, longitude, elevation), magnetic data (X, Y and Z) and also direction from the North.



      We want to normalise our data so we will be able to correctly compare them with data from WMM.







      physics mathematical-physics electromagnetism






      share|cite|improve this question















      share|cite|improve this question













      share|cite|improve this question




      share|cite|improve this question








      edited Jan 16 at 16:55







      Filip Š

















      asked Jan 16 at 16:44









      Filip ŠFilip Š

      1014




      1014






















          1 Answer
          1






          active

          oldest

          votes


















          0












          $begingroup$

          I've got the answer on StackOverflow by Spektre:



          I think you need to create local reference coordinate system similar to NEH (north,east,height/altitude/up) something like





          • Representing Points on a Circular Radar Math approach.


          Its commonly used in aviation as a reference frame (heading is derived from it) so your reference frame is computed from your geo location and its axises pointing to North, East and Up.



          Now the problem is what does it mean aligned North/South and normalizing.. ?



          If reference device measure just projection than you would need to do something like this:



          dot(measured_vector,reference_unit_direction)


          where the direction would be the North direction but as unit vector.



          If the reference device measure a full 3D too then you need to transform both reference and tested measured data into the same coordinate system. That is done by using




          • transform matrices


          So simple matrix * vector multiplication will do ... Only then compute the values H,F,Z which I do not know what they are and too lazy to go through papers ... would expect E,H or B vectors instead.



          However if you do not have the geo location at moment of measure then you have just the North direction in respect to the ISS in form of Euler angles so you can not construct 3D reference frame at all (unless you got 2 known vectors instead of just one like UP). In such case you need to go with the option 1 projection (using dot product and north direction vector). So you will handle just scalar values instead of 3D vectors afterwards.



          [Edit1]



          From the link of yours:




          The geomagnetic field vector, B, is described by the orthogonal
          components X (northerly intensity), Y (easterly intensity) and Z
          (vertical intensity, positive downwards);




          This is not my field of expertise so I might be wrong here but this is how I understand it:




          B(Bx,By,Bz) - magnetic field vector

          a(ax,ay,az) - acceleration



          Now F is a magnitude of B so its invariant on rotation:



          F = |B| = sqrt( Bx*Bx + By*By + Bz*Bz )


          you need to compute the X,Y,Z values of B in the NED reference frame (North,East,Down) so you need the basis vectors first:





          Down = a/|a|  // gravity points down
          North = B/|B| // north is close to B direction
          East = cross(Down,North) // East is perpendicular to Down and North
          North = cross(East,Down) // north is perpendicular to Down and East, this should convert North to the horizontal plane


          You should render them to visually check if they point to correct directions if not negate them by reordering the cross operands (I might have the order wrong I am used to use Up vector instead). Now just convert B to NED :



          X = dot(North,B)
          Y = dot(East,B)
          Z = dot(Down,B)


          And now you can compute the H



          H = sqrt( X*X +Y*Y )


          The vector math needed for this you will find in the transform matrix link above.



          beware this will work only if no accelerations are present (the sensor is not on a robotic arm during its operation, or ISS is not doing a burn...) Otherwise you need to obtain the NED frame differently (like from onboard systems)



          If this not work correctly then you can compute NED from your ISS position but for that you would need to know the exact orientation and displacement of the sensor in respect to your simulation model that provide your location. I do not know what rotations ISS do so I would not touch that subject unless as a last resort.



          I am afraid that I will not have time for coding for some time ... anyway coding without sample input data nor the coordinate system expalnations and all the input/output variables is insanity ... simple negation of axis will invalidate the whole thing and there is a lot of duplicities along the ways and to cover all of them you would end up with many many versions to try to...



          Apps should be build up incrementally but I am afraid that without the access to simulation or real HW that is not possible. And there is a whole bunch of things that could go wrong ... making even simple programs a magnitude harder to code... I would first check the F as it does not require any "normalization" first to see if the results are off or not. If off it might suggest different units or god knows what ...






          share|cite|improve this answer









          $endgroup$














            Your Answer





            StackExchange.ifUsing("editor", function () {
            return StackExchange.using("mathjaxEditing", function () {
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            });
            });
            }, "mathjax-editing");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "69"
            };
            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
            },
            noCode: true, onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3075957%2fnormalising-angled-earth-magnetic-field%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0












            $begingroup$

            I've got the answer on StackOverflow by Spektre:



            I think you need to create local reference coordinate system similar to NEH (north,east,height/altitude/up) something like





            • Representing Points on a Circular Radar Math approach.


            Its commonly used in aviation as a reference frame (heading is derived from it) so your reference frame is computed from your geo location and its axises pointing to North, East and Up.



            Now the problem is what does it mean aligned North/South and normalizing.. ?



            If reference device measure just projection than you would need to do something like this:



            dot(measured_vector,reference_unit_direction)


            where the direction would be the North direction but as unit vector.



            If the reference device measure a full 3D too then you need to transform both reference and tested measured data into the same coordinate system. That is done by using




            • transform matrices


            So simple matrix * vector multiplication will do ... Only then compute the values H,F,Z which I do not know what they are and too lazy to go through papers ... would expect E,H or B vectors instead.



            However if you do not have the geo location at moment of measure then you have just the North direction in respect to the ISS in form of Euler angles so you can not construct 3D reference frame at all (unless you got 2 known vectors instead of just one like UP). In such case you need to go with the option 1 projection (using dot product and north direction vector). So you will handle just scalar values instead of 3D vectors afterwards.



            [Edit1]



            From the link of yours:




            The geomagnetic field vector, B, is described by the orthogonal
            components X (northerly intensity), Y (easterly intensity) and Z
            (vertical intensity, positive downwards);




            This is not my field of expertise so I might be wrong here but this is how I understand it:




            B(Bx,By,Bz) - magnetic field vector

            a(ax,ay,az) - acceleration



            Now F is a magnitude of B so its invariant on rotation:



            F = |B| = sqrt( Bx*Bx + By*By + Bz*Bz )


            you need to compute the X,Y,Z values of B in the NED reference frame (North,East,Down) so you need the basis vectors first:





            Down = a/|a|  // gravity points down
            North = B/|B| // north is close to B direction
            East = cross(Down,North) // East is perpendicular to Down and North
            North = cross(East,Down) // north is perpendicular to Down and East, this should convert North to the horizontal plane


            You should render them to visually check if they point to correct directions if not negate them by reordering the cross operands (I might have the order wrong I am used to use Up vector instead). Now just convert B to NED :



            X = dot(North,B)
            Y = dot(East,B)
            Z = dot(Down,B)


            And now you can compute the H



            H = sqrt( X*X +Y*Y )


            The vector math needed for this you will find in the transform matrix link above.



            beware this will work only if no accelerations are present (the sensor is not on a robotic arm during its operation, or ISS is not doing a burn...) Otherwise you need to obtain the NED frame differently (like from onboard systems)



            If this not work correctly then you can compute NED from your ISS position but for that you would need to know the exact orientation and displacement of the sensor in respect to your simulation model that provide your location. I do not know what rotations ISS do so I would not touch that subject unless as a last resort.



            I am afraid that I will not have time for coding for some time ... anyway coding without sample input data nor the coordinate system expalnations and all the input/output variables is insanity ... simple negation of axis will invalidate the whole thing and there is a lot of duplicities along the ways and to cover all of them you would end up with many many versions to try to...



            Apps should be build up incrementally but I am afraid that without the access to simulation or real HW that is not possible. And there is a whole bunch of things that could go wrong ... making even simple programs a magnitude harder to code... I would first check the F as it does not require any "normalization" first to see if the results are off or not. If off it might suggest different units or god knows what ...






            share|cite|improve this answer









            $endgroup$


















              0












              $begingroup$

              I've got the answer on StackOverflow by Spektre:



              I think you need to create local reference coordinate system similar to NEH (north,east,height/altitude/up) something like





              • Representing Points on a Circular Radar Math approach.


              Its commonly used in aviation as a reference frame (heading is derived from it) so your reference frame is computed from your geo location and its axises pointing to North, East and Up.



              Now the problem is what does it mean aligned North/South and normalizing.. ?



              If reference device measure just projection than you would need to do something like this:



              dot(measured_vector,reference_unit_direction)


              where the direction would be the North direction but as unit vector.



              If the reference device measure a full 3D too then you need to transform both reference and tested measured data into the same coordinate system. That is done by using




              • transform matrices


              So simple matrix * vector multiplication will do ... Only then compute the values H,F,Z which I do not know what they are and too lazy to go through papers ... would expect E,H or B vectors instead.



              However if you do not have the geo location at moment of measure then you have just the North direction in respect to the ISS in form of Euler angles so you can not construct 3D reference frame at all (unless you got 2 known vectors instead of just one like UP). In such case you need to go with the option 1 projection (using dot product and north direction vector). So you will handle just scalar values instead of 3D vectors afterwards.



              [Edit1]



              From the link of yours:




              The geomagnetic field vector, B, is described by the orthogonal
              components X (northerly intensity), Y (easterly intensity) and Z
              (vertical intensity, positive downwards);




              This is not my field of expertise so I might be wrong here but this is how I understand it:




              B(Bx,By,Bz) - magnetic field vector

              a(ax,ay,az) - acceleration



              Now F is a magnitude of B so its invariant on rotation:



              F = |B| = sqrt( Bx*Bx + By*By + Bz*Bz )


              you need to compute the X,Y,Z values of B in the NED reference frame (North,East,Down) so you need the basis vectors first:





              Down = a/|a|  // gravity points down
              North = B/|B| // north is close to B direction
              East = cross(Down,North) // East is perpendicular to Down and North
              North = cross(East,Down) // north is perpendicular to Down and East, this should convert North to the horizontal plane


              You should render them to visually check if they point to correct directions if not negate them by reordering the cross operands (I might have the order wrong I am used to use Up vector instead). Now just convert B to NED :



              X = dot(North,B)
              Y = dot(East,B)
              Z = dot(Down,B)


              And now you can compute the H



              H = sqrt( X*X +Y*Y )


              The vector math needed for this you will find in the transform matrix link above.



              beware this will work only if no accelerations are present (the sensor is not on a robotic arm during its operation, or ISS is not doing a burn...) Otherwise you need to obtain the NED frame differently (like from onboard systems)



              If this not work correctly then you can compute NED from your ISS position but for that you would need to know the exact orientation and displacement of the sensor in respect to your simulation model that provide your location. I do not know what rotations ISS do so I would not touch that subject unless as a last resort.



              I am afraid that I will not have time for coding for some time ... anyway coding without sample input data nor the coordinate system expalnations and all the input/output variables is insanity ... simple negation of axis will invalidate the whole thing and there is a lot of duplicities along the ways and to cover all of them you would end up with many many versions to try to...



              Apps should be build up incrementally but I am afraid that without the access to simulation or real HW that is not possible. And there is a whole bunch of things that could go wrong ... making even simple programs a magnitude harder to code... I would first check the F as it does not require any "normalization" first to see if the results are off or not. If off it might suggest different units or god knows what ...






              share|cite|improve this answer









              $endgroup$
















                0












                0








                0





                $begingroup$

                I've got the answer on StackOverflow by Spektre:



                I think you need to create local reference coordinate system similar to NEH (north,east,height/altitude/up) something like





                • Representing Points on a Circular Radar Math approach.


                Its commonly used in aviation as a reference frame (heading is derived from it) so your reference frame is computed from your geo location and its axises pointing to North, East and Up.



                Now the problem is what does it mean aligned North/South and normalizing.. ?



                If reference device measure just projection than you would need to do something like this:



                dot(measured_vector,reference_unit_direction)


                where the direction would be the North direction but as unit vector.



                If the reference device measure a full 3D too then you need to transform both reference and tested measured data into the same coordinate system. That is done by using




                • transform matrices


                So simple matrix * vector multiplication will do ... Only then compute the values H,F,Z which I do not know what they are and too lazy to go through papers ... would expect E,H or B vectors instead.



                However if you do not have the geo location at moment of measure then you have just the North direction in respect to the ISS in form of Euler angles so you can not construct 3D reference frame at all (unless you got 2 known vectors instead of just one like UP). In such case you need to go with the option 1 projection (using dot product and north direction vector). So you will handle just scalar values instead of 3D vectors afterwards.



                [Edit1]



                From the link of yours:




                The geomagnetic field vector, B, is described by the orthogonal
                components X (northerly intensity), Y (easterly intensity) and Z
                (vertical intensity, positive downwards);




                This is not my field of expertise so I might be wrong here but this is how I understand it:




                B(Bx,By,Bz) - magnetic field vector

                a(ax,ay,az) - acceleration



                Now F is a magnitude of B so its invariant on rotation:



                F = |B| = sqrt( Bx*Bx + By*By + Bz*Bz )


                you need to compute the X,Y,Z values of B in the NED reference frame (North,East,Down) so you need the basis vectors first:





                Down = a/|a|  // gravity points down
                North = B/|B| // north is close to B direction
                East = cross(Down,North) // East is perpendicular to Down and North
                North = cross(East,Down) // north is perpendicular to Down and East, this should convert North to the horizontal plane


                You should render them to visually check if they point to correct directions if not negate them by reordering the cross operands (I might have the order wrong I am used to use Up vector instead). Now just convert B to NED :



                X = dot(North,B)
                Y = dot(East,B)
                Z = dot(Down,B)


                And now you can compute the H



                H = sqrt( X*X +Y*Y )


                The vector math needed for this you will find in the transform matrix link above.



                beware this will work only if no accelerations are present (the sensor is not on a robotic arm during its operation, or ISS is not doing a burn...) Otherwise you need to obtain the NED frame differently (like from onboard systems)



                If this not work correctly then you can compute NED from your ISS position but for that you would need to know the exact orientation and displacement of the sensor in respect to your simulation model that provide your location. I do not know what rotations ISS do so I would not touch that subject unless as a last resort.



                I am afraid that I will not have time for coding for some time ... anyway coding without sample input data nor the coordinate system expalnations and all the input/output variables is insanity ... simple negation of axis will invalidate the whole thing and there is a lot of duplicities along the ways and to cover all of them you would end up with many many versions to try to...



                Apps should be build up incrementally but I am afraid that without the access to simulation or real HW that is not possible. And there is a whole bunch of things that could go wrong ... making even simple programs a magnitude harder to code... I would first check the F as it does not require any "normalization" first to see if the results are off or not. If off it might suggest different units or god knows what ...






                share|cite|improve this answer









                $endgroup$



                I've got the answer on StackOverflow by Spektre:



                I think you need to create local reference coordinate system similar to NEH (north,east,height/altitude/up) something like





                • Representing Points on a Circular Radar Math approach.


                Its commonly used in aviation as a reference frame (heading is derived from it) so your reference frame is computed from your geo location and its axises pointing to North, East and Up.



                Now the problem is what does it mean aligned North/South and normalizing.. ?



                If reference device measure just projection than you would need to do something like this:



                dot(measured_vector,reference_unit_direction)


                where the direction would be the North direction but as unit vector.



                If the reference device measure a full 3D too then you need to transform both reference and tested measured data into the same coordinate system. That is done by using




                • transform matrices


                So simple matrix * vector multiplication will do ... Only then compute the values H,F,Z which I do not know what they are and too lazy to go through papers ... would expect E,H or B vectors instead.



                However if you do not have the geo location at moment of measure then you have just the North direction in respect to the ISS in form of Euler angles so you can not construct 3D reference frame at all (unless you got 2 known vectors instead of just one like UP). In such case you need to go with the option 1 projection (using dot product and north direction vector). So you will handle just scalar values instead of 3D vectors afterwards.



                [Edit1]



                From the link of yours:




                The geomagnetic field vector, B, is described by the orthogonal
                components X (northerly intensity), Y (easterly intensity) and Z
                (vertical intensity, positive downwards);




                This is not my field of expertise so I might be wrong here but this is how I understand it:




                B(Bx,By,Bz) - magnetic field vector

                a(ax,ay,az) - acceleration



                Now F is a magnitude of B so its invariant on rotation:



                F = |B| = sqrt( Bx*Bx + By*By + Bz*Bz )


                you need to compute the X,Y,Z values of B in the NED reference frame (North,East,Down) so you need the basis vectors first:





                Down = a/|a|  // gravity points down
                North = B/|B| // north is close to B direction
                East = cross(Down,North) // East is perpendicular to Down and North
                North = cross(East,Down) // north is perpendicular to Down and East, this should convert North to the horizontal plane


                You should render them to visually check if they point to correct directions if not negate them by reordering the cross operands (I might have the order wrong I am used to use Up vector instead). Now just convert B to NED :



                X = dot(North,B)
                Y = dot(East,B)
                Z = dot(Down,B)


                And now you can compute the H



                H = sqrt( X*X +Y*Y )


                The vector math needed for this you will find in the transform matrix link above.



                beware this will work only if no accelerations are present (the sensor is not on a robotic arm during its operation, or ISS is not doing a burn...) Otherwise you need to obtain the NED frame differently (like from onboard systems)



                If this not work correctly then you can compute NED from your ISS position but for that you would need to know the exact orientation and displacement of the sensor in respect to your simulation model that provide your location. I do not know what rotations ISS do so I would not touch that subject unless as a last resort.



                I am afraid that I will not have time for coding for some time ... anyway coding without sample input data nor the coordinate system expalnations and all the input/output variables is insanity ... simple negation of axis will invalidate the whole thing and there is a lot of duplicities along the ways and to cover all of them you would end up with many many versions to try to...



                Apps should be build up incrementally but I am afraid that without the access to simulation or real HW that is not possible. And there is a whole bunch of things that could go wrong ... making even simple programs a magnitude harder to code... I would first check the F as it does not require any "normalization" first to see if the results are off or not. If off it might suggest different units or god knows what ...







                share|cite|improve this answer












                share|cite|improve this answer



                share|cite|improve this answer










                answered Feb 8 at 9:28









                Filip ŠFilip Š

                1014




                1014






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Mathematics Stack Exchange!


                    • 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.


                    Use MathJax to format equations. MathJax reference.


                    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%2fmath.stackexchange.com%2fquestions%2f3075957%2fnormalising-angled-earth-magnetic-field%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

                    Human spaceflight

                    Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?

                    File:DeusFollowingSea.jpg