Electronic – arduino – GPS positioning for quadcopter

arduinogpsroboticssensor

I am an engineering undergraduate student.
I am currently working on a project to implement a sensing package on a quadcopter for the deployment in the canopy of tropical rain forests. This package needs to measure temperature, humidity, pressure and light intensity. All these have been taken care of, but it also needs to precisely obtain the position of the quadcopter and I am not sure how to achieve this. As it will operate in a rain forest, a standard GPS will probably not be accurate enough in part due to the bad signal (forest means a lot of trees and vegetation around). I am building everything on an Arduino Mega 2560 board. I was thinking on using D-GPS but I am not sure how to implement it.

Does someone know how I could obtain a precise (submeter precise) position of the quadcopter?

Best Answer

People have reported obtaining ~meter range precision combining data from a GPS unit - again as Dzarda suggested, make sure you use a GPS antenna sensitive enough to pick the signal obstructed by the forest - and an IMU (Inertial Measurement Unit), measuring 3D acceleration and 3axes rotation. I would personally recommend the 10DOF IMU from Pololu, which I have been using with Arduino and works nicely.

You will then have to implement the data fusion - kalman filtering using the data from the GPS and the IMU. You should be able to find a lot of documentation/tutorial/codes sample on the Arduino forum, on how to do that.

Related Topic