Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compass give me crazy data, is calibration needed or it's the sensor broken?

I'm working with android sensor data. My application use

SensorManager.getRotationMatrixFromVector(
            mRotationMatrix , event.values);

and it has been working well until this morning, when the rotation matrix started to send a lot of noise data (Change N to W in a second).

It's not a problem with my code, because on friday was working and no changes have been done. I have used a compass app from the market, and the compass is giving random data.

I have tested my app on another tablet, and it is working well.

Does someone know why is this happening? A problem with the sensor? Does it need a calibration?

like image 716
vgonisanz Avatar asked Feb 27 '12 09:02

vgonisanz


People also ask

Do I need compass calibration?

Google Maps uses your Android device's magnetometer to determine which direction you're heading. To improve your device's location accuracy, you need to calibrate your compass in the Google Maps app.

Does a magnetic compass need to be calibrated?

Calibration of the digital magnetic compass is an essential and critical step before actually using the compass. Many times, it has been observed that users tend to skip this step which is a highly unsafe practice. The compass should be re-calibrated if the soft or hard iron sources of error in the vicinity change.

What does compass calibration do?

Compass calibration works by detecting the magnetic field intensity of earth. But sometimes due to strong interference from other electronic devices like transformers, compass sensor may get wrong idea about the magnetic poles of earth and can point in wrong direction.


2 Answers

I've worked quite a lot with these electronic compasses on mobile phones and its quite possible that there is nothing wrong with your code or sensor.

Instead it could very well be a problem with your environment. There are magnetic fields interfering with the earth's magnetic fields all the time. From electrical equipment interference to the metal structure holding up a building. At the end of the day a compass is just a magnet. If you stand beside a large lump of metal the compass will be attracted to it and point to it rather than the magnetic north pole.

Try this: Install GPS status then turn off all filtering (settings... gps & sensors...sensor filtering... no filtering). Do the calibration (figure of 8 wavy stuff) and then move the phone around your desk.. near monitors, cables, etc. You'll see it go crazy. The information is completely unreliable. I found in the past that moving the phone a few inches to the right completely changed its reading. The same happens with a real compass. Strictly speaking there is no "problem". The device's compass is assigning itself with the strongest magnetic field. Even the magnetic content of nearby rocks can interfere with the compass.

As a further test I've just placed a real (orienteering) compass over my phone which has a compass app installed. The real compass is now pointing everywhere but magnetic North. The two devices are interfering with each other.

So my advice is.. go somewhere in the open, like a park or field, away from any potential interference and power lines, (if you have one bring a real compass to check that the GPS status app is pointing the right way), and see if your compass works as you'd expect.

Extra: The answer from @resus is also important when calibrating. Rotate the phone a few times in each axis. Looks silly but it does calibrate it properly.

Extra 2: Would it be possible/practical to use the compass bearing of your GPS? It would require that the device be moving (walking speed should be fine) but you would not need to worry about any interference. It should give an accurate reading provided your GPS signal is good.

Extra 3: Another thought just occurred to me.. You could try apply a low pass filter to the sensor. This means that the sudden changes in the sensor reading are filtered out .. have a look at this answer. And if that doesn't do a good job there are lots of algorithms on the web for you to choose from.

like image 60
Tim Avatar answered Sep 23 '22 16:09

Tim


If you definitely haven't changed anything in your code, and it still works fine on other devices, it would suggest a problem with that particular device.

While your app is running (i.e. the compass is in use), you should be able to wave it in a figure of 8 in order to automatically recalibrate the compass. You should also make sure you aren't standing next to any large lumps of metal etc. that might interfere with readings.

You can override the onAccuracyChanged() method of SensorEventListener to flash up a message to the user when the compass requires recalibration (probably when accuracy drops to SENSOR_STATUS_ACCURACY_LOW).

In my experience of playing with the compass on android phones, they can be pretty unreliable...

like image 29
TheLastBert Avatar answered Sep 25 '22 16:09

TheLastBert