00001 /* 00002 Situare - A location system for Facebook 00003 Copyright (C) 2010 Ixonos Plc. Authors: 00004 00005 Sami Rämö - sami.ramo@ixonos.com 00006 Jussi Laitinen - jussi.laitinen@ixonos.com 00007 00008 Situare is free software; you can redistribute it and/or 00009 modify it under the terms of the GNU General Public License 00010 version 2 as published by the Free Software Foundation. 00011 00012 Situare is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 GNU General Public License for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with Situare; if not, write to the Free Software 00019 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 00020 USA. 00021 */ 00022 00023 #ifndef GPSCOMMON_H 00024 #define GPSCOMMON_H 00025 00026 #include <QObject> 00027 00028 const int GPS_ACCURACY_UNDEFINED = -1; 00029 const int GPS_COORDINATE_UNDEFINED = -1000; 00030 00031 const qreal GPS_MAX_LATITUDE = 85.05112877980659237802; 00032 const qreal GPS_MIN_LATITUDE = -GPS_MAX_LATITUDE; 00033 const qreal GPS_MIN_LONGITUDE = -180.0; 00034 const qreal GPS_MAX_LONGITUDE = 180.0; 00035 00036 #endif // GPSCOMMON_H