Full Code of mvglasow/satstat for AI

master 86fb47814d02 cached
191 files
891.4 KB
235.0k tokens
761 symbols
1 requests
Download .txt
Showing preview only (953K chars total). Download the full file or copy to clipboard to get everything.
Repository: mvglasow/satstat
Branch: master
Commit: 86fb47814d02
Files: 191
Total size: 891.4 KB

Directory structure:
gitextract_u1yto3lt/

├── .classpath
├── .externalToolBuilders/
│   └── Set Build Info.launch
├── .gitignore
├── .project
├── .settings/
│   └── org.eclipse.jdt.core.prefs
├── AndroidManifest.xml
├── LICENSE
├── README.md
├── build.gradle
├── libs/
│   ├── android-support-v4.jar
│   ├── androidsvg-1.2.2-beta-1.jar
│   ├── kxml2-2.3.0.jar
│   ├── mapsforge-core-0.9.1.jar
│   ├── mapsforge-map-0.9.1.jar
│   ├── mapsforge-map-android-0.9.1.jar
│   ├── mapsforge-map-reader-0.9.1.jar
│   └── mapsforge-themes-0.9.1.jar
├── metadata/
│   └── en-US/
│       └── changelogs/
│           ├── 10.txt
│           ├── 20.txt
│           ├── 2000.txt
│           ├── 2010.txt
│           ├── 2020.txt
│           ├── 30.txt
│           ├── 3000.txt
│           ├── 3010.txt
│           ├── 3020.txt
│           ├── 3030.txt
│           ├── 40.txt
│           ├── 50.txt
│           ├── 60.txt
│           ├── 70.txt
│           └── 80.txt
├── mkpng
├── proguard-project.txt
├── project.properties
├── res/
│   ├── drawable/
│   │   ├── divider.xml
│   │   ├── ic_stat_notify_nolocation.xml
│   │   ├── list_selector_background.xml
│   │   ├── list_selector_background_transition.xml
│   │   ├── zoom_control_in.xml
│   │   └── zoom_control_out.xml
│   ├── layout/
│   │   ├── activity_about.xml
│   │   ├── activity_legend.xml
│   │   ├── activity_main.xml
│   │   ├── activity_map_download.xml
│   │   ├── activity_settings.xml
│   │   ├── alert_map_path.xml
│   │   ├── download_list_item.xml
│   │   ├── fragment_main_dummy.xml
│   │   ├── fragment_main_gps.xml
│   │   ├── fragment_main_map.xml
│   │   ├── fragment_main_radio.xml
│   │   ├── fragment_main_sensors.xml
│   │   ├── ril_cdma_list_item.xml
│   │   ├── ril_list_item.xml
│   │   └── tree_list_item_wrapper.xml
│   ├── layout-land/
│   │   ├── fragment_main_gps.xml
│   │   └── fragment_main_sensors.xml
│   ├── layout-w640dp/
│   │   └── fragment_main_radio.xml
│   ├── menu/
│   │   └── main.xml
│   ├── raw/
│   │   └── .gitignore
│   ├── values/
│   │   ├── attrs.xml
│   │   ├── dimens.xml
│   │   ├── strings.xml
│   │   ├── styles.xml
│   │   └── treeview_styles.xml
│   ├── values-ca/
│   │   └── strings.xml
│   ├── values-de/
│   │   └── strings.xml
│   ├── values-es/
│   │   └── strings.xml
│   ├── values-fr/
│   │   └── strings.xml
│   ├── values-hu/
│   │   └── strings.xml
│   ├── values-it/
│   │   └── strings.xml
│   ├── values-lt/
│   │   └── strings.xml
│   ├── values-pt-rBR/
│   │   └── strings.xml
│   ├── values-sw600dp/
│   │   └── dimens.xml
│   ├── values-sw720dp-land/
│   │   └── dimens.xml
│   ├── values-v21/
│   │   └── styles.xml
│   └── xml/
│       └── preferences.xml
├── setbuild.sh
└── src/
    ├── com/
    │   ├── hzi/
    │   │   └── UTM.java
    │   └── vonglasow/
    │       └── michael/
    │           └── satstat/
    │               ├── Const.java
    │               ├── GpsEventReceiver.java
    │               ├── PasvLocListenerService.java
    │               ├── SatStatApplication.java
    │               ├── data/
    │               │   ├── CellTower.java
    │               │   ├── CellTowerCdma.java
    │               │   ├── CellTowerGsm.java
    │               │   ├── CellTowerList.java
    │               │   ├── CellTowerListCdma.java
    │               │   ├── CellTowerListGsm.java
    │               │   ├── CellTowerListLte.java
    │               │   └── CellTowerLte.java
    │               ├── ui/
    │               │   ├── AboutActivity.java
    │               │   ├── GpsSectionFragment.java
    │               │   ├── LegendActivity.java
    │               │   ├── MainActivity.java
    │               │   ├── MapDownloadActivity.java
    │               │   ├── MapSectionFragment.java
    │               │   ├── RadioSectionFragment.java
    │               │   ├── SensorSectionFragment.java
    │               │   └── SettingsActivity.java
    │               ├── utils/
    │               │   ├── DownloadTreeViewAdapter.java
    │               │   ├── HttpDownloader.java
    │               │   ├── PermissionHelper.java
    │               │   ├── RemoteDirListListener.java
    │               │   ├── RemoteDirListTask.java
    │               │   ├── RemoteFile.java
    │               │   ├── RemoteFileComparator.java
    │               │   ├── WifiCapabilities.java
    │               │   └── WifiScanResultComparator.java
    │               └── widgets/
    │                   ├── GpsSnrView.java
    │                   ├── GpsStatusView.java
    │                   ├── LocProviderPreference.java
    │                   ├── MapViewPager.java
    │                   ├── NetworkTypePreference.java
    │                   └── SquareView.java
    ├── pl/
    │   └── polidea/
    │       └── treeview/
    │           ├── AbstractTreeViewAdapter.java
    │           ├── DownloadTreeStateManager.java
    │           ├── InMemoryTreeNode.java
    │           ├── InMemoryTreeStateManager.java
    │           ├── NodeAlreadyInTreeException.java
    │           ├── NodeNotInTreeException.java
    │           ├── TreeBuilder.java
    │           ├── TreeConfigurationException.java
    │           ├── TreeNodeInfo.java
    │           ├── TreeStateManager.java
    │           ├── TreeViewList.java
    │           ├── overview.html
    │           └── package-info.java
    └── uk/
        └── me/
            └── jstott/
                └── jcoord/
                    ├── CoordinateSystem.java
                    ├── ECEFRef.java
                    ├── IrishRef.java
                    ├── LatLng.java
                    ├── MGRSRef.java
                    ├── NotDefinedOnUTMGridException.java
                    ├── OSRef.java
                    ├── RefEll.java
                    ├── Test.java
                    ├── UTMRef.java
                    ├── Util.java
                    ├── datum/
                    │   ├── Datum.java
                    │   ├── ETRF89Datum.java
                    │   ├── Ireland1965Datum.java
                    │   ├── OSGB36Datum.java
                    │   ├── WGS84Datum.java
                    │   └── nad27/
                    │       ├── NAD27AlaskaDatum.java
                    │       ├── NAD27AlbertaBritishColumbiaDatum.java
                    │       ├── NAD27AleutianEastDatum.java
                    │       ├── NAD27AleutianWestDatum.java
                    │       ├── NAD27BahamasDatum.java
                    │       ├── NAD27CanadaDatum.java
                    │       ├── NAD27CanadaEastDatum.java
                    │       ├── NAD27CanadaManitobaOntarioDatum.java
                    │       ├── NAD27CanadaNWTerritoryDatum.java
                    │       ├── NAD27CanadaYukonDatum.java
                    │       ├── NAD27CanalZoneDatum.java
                    │       ├── NAD27CaribbeanDatum.java
                    │       ├── NAD27CentralAmericaDatum.java
                    │       ├── NAD27ContiguousUSDatum.java
                    │       ├── NAD27CubaDatum.java
                    │       ├── NAD27EasternUSDatum.java
                    │       ├── NAD27GreenlandDatum.java
                    │       ├── NAD27MexicoDatum.java
                    │       ├── NAD27SanSalvadorDatum.java
                    │       └── NAD27WesternUSDatum.java
                    └── ellipsoid/
                        ├── Airy1830Ellipsoid.java
                        ├── AustralianNational1966Ellipsoid.java
                        ├── Bessel1841Ellipsoid.java
                        ├── Clarke1866Ellipsoid.java
                        ├── Clarke1880Ellipsoid.java
                        ├── Ellipsoid.java
                        ├── EverestEllipsoid.java
                        ├── Fischer1960Ellipsoid.java
                        ├── Fischer1968Ellipsoid.java
                        ├── GRS67Ellipsoid.java
                        ├── GRS75Ellipsoid.java
                        ├── GRS80Ellipsoid.java
                        ├── Hayford1910Ellipsoid.java
                        ├── Helmert1906Ellipsoid.java
                        ├── Hough1956Ellipsoid.java
                        ├── IERS1989Ellipsoid.java
                        ├── InternationalEllipsoid.java
                        ├── Krassovsky1940Ellipsoid.java
                        ├── ModifiedAiryEllipsoid.java
                        ├── ModifiedEverestEllipsoid.java
                        ├── NewInternational1967Ellipsoid.java
                        ├── SouthAmerican1969Ellipsoid.java
                        ├── WGS60Ellipsoid.java
                        ├── WGS66Ellipsoid.java
                        ├── WGS72Ellipsoid.java
                        └── WGS84Ellipsoid.java

================================================
FILE CONTENTS
================================================

================================================
FILE: .classpath
================================================
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
	<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
	<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
	<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
	<classpathentry kind="src" path="src"/>
	<classpathentry kind="src" path="gen"/>
	<classpathentry kind="con" path="org.eclipse.andmore.ANDROID_FRAMEWORK"/>
	<classpathentry exported="true" kind="con" path="org.eclipse.andmore.LIBRARIES"/>
	<classpathentry exported="true" kind="con" path="org.eclipse.andmore.DEPENDENCIES"/>
	<classpathentry kind="output" path="bin/classes"/>
</classpath>


================================================
FILE: .externalToolBuilders/Set Build Info.launch
================================================
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.ui.externaltools.ProgramBuilderLaunchConfigurationType">
<booleanAttribute key="org.eclipse.debug.core.capture_output" value="false"/>
<booleanAttribute key="org.eclipse.debug.ui.ATTR_CONSOLE_OUTPUT_ON" value="false"/>
<booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/satstat/setbuild.sh}"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,auto,"/>
<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${workspace_loc:/satstat}"/>
</launchConfiguration>


================================================
FILE: .gitignore
================================================
.gradle
bin
build
gen
res/raw/build.txt


================================================
FILE: .project
================================================
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
	<name>satstat</name>
	<comment></comment>
	<projects>
	</projects>
	<buildSpec>
		<buildCommand>
			<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
			<triggers>auto,full,incremental,</triggers>
			<arguments>
				<dictionary>
					<key>LaunchConfigHandle</key>
					<value>&lt;project&gt;/.externalToolBuilders/Set Build Info.launch</value>
				</dictionary>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.andmore.ResourceManagerBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.andmore.PreCompilerBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.jdt.core.javabuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.andmore.ApkBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	<natures>
		<nature>org.eclipse.andmore.AndroidNature</nature>
		<nature>org.eclipse.jdt.core.javanature</nature>
	</natures>
</projectDescription>


================================================
FILE: .settings/org.eclipse.jdt.core.prefs
================================================
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6


================================================
FILE: AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.vonglasow.michael.satstat"
    android:versionCode="30400"
    android:versionName="3.4" >

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="23" />

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <application
        android:name=".SatStatApplication"
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".ui.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".ui.AboutActivity"
            android:label="@string/title_activity_about"
            android:parentActivityName=".ui.MainActivity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value=".ui.MainActivity" />
        </activity>
        <activity
            android:name=".ui.SettingsActivity"
            android:label="@string/title_activity_settings"
            android:parentActivityName=".ui.MainActivity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value=".ui.MainActivity" />
        </activity>

        <receiver android:name="GpsEventReceiver" >
            <intent-filter>
                <action android:name="android.location.GPS_ENABLED_CHANGE" />
                <action android:name="android.location.GPS_FIX_CHANGE" />
                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
                <action android:name="android.net.wifi.STATE_CHANGE" />
                <action android:name="com.vonglasow.michael.satstat.AGPS_DATA_EXPIRED" />
            </intent-filter>
        </receiver>

        <service
            android:name="PasvLocListenerService"
            android:exported="false"
            android:stopWithTask="false" >
        </service>

        <activity
            android:name=".ui.LegendActivity"
            android:label="@string/title_activity_legend"
            android:parentActivityName=".ui.MainActivity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value=".ui.MainActivity" />
        </activity>
        <activity
            android:name=".ui.MapDownloadActivity"
            android:label="@string/title_activity_map_download"
            android:parentActivityName=".ui.SettingsActivity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value=".ui.SettingsActivity" />
        </activity>
        <activity
            android:name=".utils.PermissionHelper$PermissionRequestActivity" >
        </activity>
    </application>

</manifest>

================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. {http://fsf.org/}
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    {one line to give the program's name and a brief idea of what it does.}
    Copyright (C) {year}  {name of author}

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see {http://www.gnu.org/licenses/}.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    satstat  Copyright (C) 2013  mvglasow
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
{http://www.gnu.org/licenses/}.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
{http://www.gnu.org/philosophy/why-not-lgpl.html}.


================================================
FILE: README.md
================================================
SatStat
=======

Android Location, Sensor and Radio Network Status

<a href="https://f-droid.org/packages/com.vonglasow.michael.satstat/" target="_blank">
<img src="https://f-droid.org/badge/get-it-on.png" alt="Get it on F-Droid" height="80"/></a>

---

<img alt="GPS view in SatStat" src="https://mvglasow.github.io/satstat/screenshots/satstat-gps.png" width="240px" />&nbsp;<img alt="Sensor view in SatStat" src="https://mvglasow.github.io/satstat/screenshots/satstat-sensors.png" width="240px" />&nbsp;<img alt="Radio view in SatStat" src="https://mvglasow.github.io/satstat/screenshots/satstat-radio.png" width="240px" />&nbsp;<img alt="Map view in SatStat with local tiles" src="https://mvglasow.github.io/satstat/screenshots/satstat-map.png" width="240px" />&nbsp;<img alt="Map view in SatStat with OSM tiles" src="https://mvglasow.github.io/satstat/screenshots/satstat-map2.png" width="240px" />&nbsp;<img alt="GPS notification in SatStat without fix" src="https://mvglasow.github.io/satstat/screenshots/satstat-search.png" width="240px" />&nbsp;<img alt="GPS notification in SatStat with fix" src="https://mvglasow.github.io/satstat/screenshots/satstat-fix.png" width="240px" />


================================================
FILE: build.gradle
================================================
buildscript {
    repositories {
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.2'
    }
}

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion '25.0.0'

    defaultConfig {
        minSdkVersion 11
        targetSdkVersion 23
    }

    packagingOptions {
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
    }
    
    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            resources.srcDirs = ['src']
            aidl.srcDirs = ['src']
            renderscript.srcDirs = ['src']
            res.srcDirs = ['res']
            assets.srcDirs = ['assets']
        }
    }
    
    lintOptions {
        abortOnError false
    }

    repositories {
        mavenCentral()
        mavenLocal()
    }

    dependencies {
        compile 'com.android.support:support-v4:23.2.1'
        compile 'com.android.support:appcompat-v7:23.2.1'
        compile 'com.android.support:design:23.2.1'
        
        compile 'commons-net:commons-net:3.5'

        compile 'org.mapsforge:mapsforge-core:0.9.1'
        compile 'org.mapsforge:mapsforge-map:0.9.1'
        compile 'org.mapsforge:mapsforge-map-reader:0.9.1'
        compile 'org.mapsforge:mapsforge-themes:0.9.1'
        compile 'org.mapsforge:mapsforge-map-android:0.9.1'
        compile 'com.caverock:androidsvg:1.2.2-beta-1'
        compile 'net.sf.kxml:kxml2:2.3.0'
    }
}


================================================
FILE: metadata/en-US/changelogs/10.txt
================================================
Support for legacy (3.0+) Android versions (#1)
WiFi now displays channels (#2)
Sky plot now aligned correctly when display is rotated (#4)


================================================
FILE: metadata/en-US/changelogs/20.txt
================================================
AGPS data download
Support for 5 GHz WiFI frequencies (#9)
Tab navigation in action bar in addition to swiping
Prevent NPE when returning to main activity
Improved sizing for sky plot to avoid pushing vies off the screen (#6)


================================================
FILE: metadata/en-US/changelogs/2000.txt
================================================
Map view: new view to visualize reported locations
GPS view: display SNR bars for all known satellites (including Beidou and various SBAS systems)
Radio cell view: add support for LTE on Android versions that support it
Radio cell view: display neighboring cells correctly
Radio cell view: use CellInfo on Android versions that support it
Radio cell view: eliminate duplicate entries
Radio cell view: show PSC for UMTS cells
Radio cell view: display dashes instead of bogus values when data is missing
Notifications: animate icon while searching for location
Notifications: show correct TTFF
Notifications: update content after losing fix
About screen: show version
When crashing, write crash log file
Fix cases in which automatic AGPS download would fail silently (#38)
Update mobile network type even when no data connection is active (#30)
Fix screen orientation lock issue on landscape-default devices (#32)
Do not crash upon receiving location updates with NaN coordinates (#35)
Do not crash when radio is not connected


================================================
FILE: metadata/en-US/changelogs/2010.txt
================================================
Add option for metric vs. Imperial measurement units
Add option for UTC vs. local time for GPS timestamps
Add option to split UMTS/LTE cell IDs
Add options for various coordinate formats
Add Hungarian translations, thanks to kadarivan
Add legend for colors and symbols used
Size graphics depending on display density
Increase expiration delay for location providers
Target API 19
Introduce Material LAF
Include notice in AGPS message that success cannot be reported
RIL: use all available cell information sources
Preserve state of main activity when returning from another
Run media scanner on crash log files
Use friendly date and time for crash log files
RIL: display neighboring cells correctly
RIL: show correct signal strength
RIL: correctly separate LTE cells from GSM/UMTS cells
Fix Mapsforge crash
Fix color issue in Sensor view on Marshmallow


================================================
FILE: metadata/en-US/changelogs/2020.txt
================================================
Fix crashes when permissions are denied
Fix memory leak when stopping or destroying main Activity


================================================
FILE: metadata/en-US/changelogs/30.txt
================================================
Fix regression from 60b8bec pushing sky plot off screen in landscape
Log satellites with near-zero elevation/azimuth


================================================
FILE: metadata/en-US/changelogs/3000.txt
================================================
Support for offline maps, which can be shared with other Mapsforge apps (#65)
Add option to show both UMTS/LTE cell ID representations (#77)
Optionally show speed in knots (#74)
Label GNSS systems in satellite SNR bar graph (#64)
Different options to sort WiFis (#44)
Allow manual purging of map tile cache
Switch map tile provider from (discontinued) Mapquest to OSM (#86)
Fully support Android's new runtime permission model (#67)
Update to Mapsforge 0.6.1, now with proper persistent caching
Look and feel improvements
Fix faulty mph conversion in satellite view
Fix memory leak when rotating or leaving and re-entering map view


================================================
FILE: metadata/en-US/changelogs/3010.txt
================================================
Fix crash in Settings on API levels prior to 19 (#89)
Update French translation (thanks eliovir)
Use correct unit for speed in notification


================================================
FILE: metadata/en-US/changelogs/3020.txt
================================================
Update Portuguese translation
Fix crash in CDMA cell view
Fix nautic coordinate display


================================================
FILE: metadata/en-US/changelogs/3030.txt
================================================
Sky plot: make compass orientation work on devices with compass but no orientation sensor
Sky plot: add support for Galileo
Sky plot and notification: add support for UTM coordinates
Preferences: include a hint on map download source
Map download: keep notification after map download finishes
Map download: adapt to new directory layout on Mapsforge mirror server
Metadata: add feature graphics, icon and screenshots for F-Droid
Translations: updates for French and Hungarian

Bug fixes:

Sky plot: use Altitude consistently
Sky plot and notification: display negative coordinates correctly in non-decimal formats
Map view: fix crash caused by a rare race condition
Map download: do not crash if retrieving the map directory fails
Map download: correctly display map sizes above 2 GiB
Map download: display list correctly even after screen rotation
About screen: make links clickable


================================================
FILE: metadata/en-US/changelogs/40.txt
================================================
GPS status notification whenever an app accesses GPS (configurable)
Add signal-to-noise graph for GPS/GLONASS satellites
Translations: Catalan, German, Spanish, French, Italian, Lithuanian
Add NESW marks to sky plot
Lock display rotation when device is in near-horizontal position
Use sensor resolution to determine number of decimals displayed
Show build number in About screen
Fix dormant sizing bug in sky plot


================================================
FILE: metadata/en-US/changelogs/50.txt
================================================
Update AGPS data when connecting to a WiFi network (configurable)
Prevent crash when sensors report zero resolution


================================================
FILE: metadata/en-US/changelogs/60.txt
================================================
Prevent crash on AGPS update


================================================
FILE: metadata/en-US/changelogs/70.txt
================================================
Show cellular network type (#21)
Show type of WiFi encryption (#20)
Auto-refresh WiFi network list every second (#26)
Touch WiFi network to pin it to the top of the list (#26)
Hide empty cell list in network view
Choose from all available networks for AGPS auto-update (#18)
Check for captive portal before AGPS update attempt (#18)
Repeat AGPS auto-update each time the interval expires if a selected network is available (#18)
Fix minor screen real estate issue in German translation (#23)
Prevent crash upon switching to other activities (#27)


================================================
FILE: metadata/en-US/changelogs/80.txt
================================================
Fix time conversion error that could cause an endless AGPS update loop (#31)
Typo in French translation
Show TTFF in notification (experimental)


================================================
FILE: mkpng
================================================
#!/bin/bash

## Generates PNG drawables from all SVG files.

SVG_PATH=./extra

LDPI_PATH=./res/drawable-ldpi
MDPI_PATH=./res/drawable-mdpi
HDPI_PATH=./res/drawable-hdpi
XHDPI_PATH=./res/drawable-xhdpi
XXHDPI_PATH=./res/drawable-xxhdpi

# Android density bins are:
# LDPI:   120 dpi
# MDPI:   160 dpi
# HDPI:   240 dpi
# XHDPI:  320 dpi
# XXHDPI: 480 dpi

# Default for icons is 1 SVG user unit ("px") = 1 dp.
# However, both these units have their own conflicting definitions:
# - 1 SVG user units = 1 pixel at 90 dpi.
# - 1 dp = 1 pixel at MDPI (160 dpi).
# Therefore, SVG export needs to use the following dpi values:

LDPI_RES=67.5
MDPI_RES=90
HDPI_RES=135
XHDPI_RES=180
XXHDPI_RES=270


## Creates a single PNG file from a given input SVG file at the given DPI resolution.
##
## If the output file exists and is newer than the input file, no action is taken.
##
## @param $1 The input SVG filename (full path)
## @param $2 The output PNG filename (full path)
## @param $3 The resolution in DPI
function make_png_dpi {
	if [[ -e $2 && $2 -nt $1 ]] ; then
		echo Skipping $1 because $2 exists and is newer
	else
		echo inkscape --without-gui --export-area-page --export-dpi=$3 --export-png=$2 $1
		inkscape --without-gui --export-area-page --export-dpi=$3 --export-png=$2 $1
	fi
}


## Creates a single PNG file from a given input SVG file at the given width.
##
## If the output file exists and is newer than the input file, no action is taken.
##
## @param $1 The input SVG filename (full path)
## @param $2 The output PNG filename (full path)
## @param $3 The width in pixels
function make_png_width {
	if [[ -e $2 && $2 -nt $1 ]] ; then
		echo Skipping $1 because $2 exists and is newer
	else
		echo inkscape --without-gui --export-area-page --export-width=$3 --export-png=$2 $1
		inkscape --without-gui --export-area-page --export-width=$3 --export-png=$2 $1
	fi
}


## Converts a SVG icon to PNG drawables using the default of 1 px = 1 dip.
##
## @param $1 The input SVG filename (path stripped)
## @param $2 The output PNG filename (path stripped)
function convert_by_dpi {
	baresvgfile=$1
	barepngfile=$2
	make_png_dpi $SVG_PATH/$baresvgfile $LDPI_PATH/$barepngfile $LDPI_RES
	make_png_dpi $SVG_PATH/$baresvgfile $MDPI_PATH/$barepngfile $MDPI_RES
	make_png_dpi $SVG_PATH/$baresvgfile $HDPI_PATH/$barepngfile $HDPI_RES
	make_png_dpi $SVG_PATH/$baresvgfile $XHDPI_PATH/$barepngfile $XHDPI_RES
	make_png_dpi $SVG_PATH/$baresvgfile $XXHDPI_PATH/$barepngfile $XXHDPI_RES
}


## Converts a SVG icon to PNG drawables using a specified width.
##
## @param $1 The input SVG filename (path stripped)
## @param $2 The output PNG filename (path stripped)
## @param $3 The width for the converted PNG files, in dip
function convert_by_width {
	baresvgfile=$1
	barepngfile=$2
    width_mdpi=$3
	# Derive other sizes from MDPI
	# Ordered to do lossy operations (integer division) last
	width_xhdpi=$(($width_mdpi * 2))
	width_xxhdpi=$(($width_mdpi * 3))
	width_hdpi=$(($width_xxhdpi / 2))
	width_ldpi=$(($width_hdpi / 2))
	make_png_width $SVG_PATH/$baresvgfile $LDPI_PATH/$barepngfile $width_ldpi
	make_png_width $SVG_PATH/$baresvgfile $MDPI_PATH/$barepngfile $width_mdpi
	make_png_width $SVG_PATH/$baresvgfile $HDPI_PATH/$barepngfile $width_hdpi
	make_png_width $SVG_PATH/$baresvgfile $XHDPI_PATH/$barepngfile $width_xhdpi
	make_png_width $SVG_PATH/$baresvgfile $XXHDPI_PATH/$barepngfile $width_xxhdpi
}


for svgfile in $SVG_PATH/*.svg
do
	# strip path from file name
	baresvgfile=${svgfile#$SVG_PATH/}
	barepngfile=${baresvgfile%.svg}.png
	case $baresvgfile in
		ic_context_marker_*.svg)
			convert_by_width $baresvgfile $barepngfile 32
			;;
		ic_launcher.svg|ic_launcher_oi_filemanager.svg)
			convert_by_width $baresvgfile $barepngfile 48
			;;
		*)
			convert_by_dpi $baresvgfile $barepngfile
	esac
done



================================================
FILE: proguard-project.txt
================================================
# To enable ProGuard in your project, edit project.properties
# to define the proguard.config property as described in that file.
#
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in ${sdk.dir}/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the ProGuard
# include property in project.properties.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}


================================================
FILE: project.properties
================================================
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system edit
# "ant.properties", and override values to adapt the script to your
# project structure.
#
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

# Project target.
target=android-23
android.library=false
android.library.reference.1=../../workspaces/satstat/libprojects/appcompat
android.library.reference.2=../../workspaces/satstat/libprojects/design


================================================
FILE: res/drawable/divider.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
  android:src="@android:drawable/divider_horizontal_dark"
  android:layout_width="fill_parent" android:layout_height="wrap_content"
  android:scaleType="fitXY" android:paddingLeft="5sp"
  android:paddingRight="5sp" android:paddingBottom="2sp" />


================================================
FILE: res/drawable/ic_stat_notify_nolocation.xml
================================================
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="false">
    <item android:drawable="@drawable/ic_stat_notify_nolocation_m" android:duration="160" />
    <item android:drawable="@drawable/ic_stat_notify_nolocation_lm" android:duration="240" />
    <item android:drawable="@drawable/ic_stat_notify_nolocation_l" android:duration="320" />
    <item android:drawable="@drawable/ic_stat_notify_nolocation_lm" android:duration="240" />
    <item android:drawable="@drawable/ic_stat_notify_nolocation_m" android:duration="160" />
    <item android:drawable="@drawable/ic_stat_notify_nolocation_mr" android:duration="240" />
    <item android:drawable="@drawable/ic_stat_notify_nolocation_r" android:duration="320" />
    <item android:drawable="@drawable/ic_stat_notify_nolocation_mr" android:duration="240" />
</animation-list>


================================================
FILE: res/drawable/list_selector_background.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project Licensed under the 
	Apache License, Version 2.0 (the "License"); you may not use this file except 
	in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 
	Unless required by applicable law or agreed to in writing, software distributed 
	under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 
	OR CONDITIONS OF ANY KIND, either express or implied. See the License for 
	the specific language governing permissions and limitations under the License. -->

<selector xmlns:android="http://schemas.android.com/apk/res/android">

	<item android:state_window_focused="false" android:drawable="@android:color/transparent" />

	<!-- Even though these two point to the same resource, have two states so 
		the drawable will invalidate itself when coming out of pressed state. -->
	<item android:state_focused="true" android:state_enabled="false"
		android:state_pressed="true" android:drawable="@android:color/transparent" />
	<item android:state_focused="true" android:state_enabled="false"
		android:drawable="@android:color/transparent" />

	<item android:state_focused="true" android:state_pressed="true"
		android:drawable="@color/ripple_material_dark" />
	<item android:state_focused="false" android:state_pressed="true"
		android:drawable="@color/ripple_material_dark" />

	<item android:state_focused="true"
		android:drawable="@color/ripple_material_dark" />

	<!-- !!hack!! to fill StateListDrawable.mStateListState with exactly 10 
		items otherwise it will throw NPE on Android 1.6 -->

	<item android:animationCache="true"
		android:drawable="@android:color/transparent" />

	<item android:animationCache="false"
		android:drawable="@android:color/transparent" />

	<item android:alwaysDrawnWithCache="false"
		android:drawable="@android:color/transparent" />

	<item android:alwaysDrawnWithCache="true"
		android:drawable="@android:color/transparent" />
	
	
</selector>

================================================
FILE: res/drawable/list_selector_background_transition.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
  
          http://www.apache.org/licenses/LICENSE-2.0
  
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<transition xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@color/ripple_material_dark"  />
    <item android:drawable="@color/ripple_material_dark"  />
</transition>


================================================
FILE: res/drawable/zoom_control_in.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/zoom_control_in_disabled" android:state_enabled="false" />
    <item android:drawable="@drawable/zoom_control_in_pressed" android:state_pressed="true" />
    <item android:drawable="@drawable/zoom_control_in_normal" />

</selector>

================================================
FILE: res/drawable/zoom_control_out.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/zoom_control_out_disabled" android:state_enabled="false" />
    <item android:drawable="@drawable/zoom_control_out_pressed" android:state_pressed="true" />
    <item android:drawable="@drawable/zoom_control_out_normal" />

</selector>

================================================
FILE: res/layout/activity_about.xml
================================================
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".AboutActivity" >

    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:paddingBottom="@dimen/activity_vertical_margin"
            android:paddingLeft="@dimen/activity_horizontal_margin"
            android:paddingRight="@dimen/activity_horizontal_margin"
            android:paddingTop="@dimen/activity_vertical_margin" >

            <TextView
                android:id="@+id/aboutCaption"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/about_caption" />

            <TextView
                android:id="@+id/aboutBuild"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingBottom="@dimen/activity_vertical_margin" />

            <TextView
                android:id="@+id/aboutText"
                android:autoLink="email|web"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            </LinearLayout>
    </ScrollView>

</RelativeLayout>


================================================
FILE: res/layout/activity_legend.xml
================================================
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".LegendActivity" >

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:paddingBottom="@dimen/activity_vertical_margin"
            android:paddingLeft="@dimen/activity_horizontal_margin"
            android:paddingRight="@dimen/activity_horizontal_margin" >

            <TextView
                style="?android:attr/listSeparatorTextViewStyle"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/title_legend_gps" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical" >

                <!-- GPS legend items go here -->
                <!-- TODO dividers between child layouts -->

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:gravity="center_vertical|center"
                        android:text="@string/dot"
                        android:textAppearance="?android:attr/textAppearanceLarge"
                        android:textColor="@color/gpsUsed" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_gps_used"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:gravity="center_vertical|center"
                        android:text="@string/dot"
                        android:textAppearance="?android:attr/textAppearanceLarge"
                        android:textColor="@color/gpsUnused" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_gps_unused"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>
            </LinearLayout>

            <TextView
                style="?android:attr/listSeparatorTextViewStyle"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/title_legend_sensors" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical" >

                <!-- Sensor legend items go here -->
                <!-- TODO dividers between child layouts -->

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:gravity="center_vertical|center"
                        android:text="@string/dot"
                        android:textAppearance="?android:attr/textAppearanceLarge"
                        android:textColor="@color/accHigh" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_sensors_high"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:gravity="center_vertical|center"
                        android:text="@string/dot"
                        android:textAppearance="?android:attr/textAppearanceLarge"
                        android:textColor="@color/accMedium" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_sensors_medium"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:gravity="center_vertical|center"
                        android:text="@string/dot"
                        android:textAppearance="?android:attr/textAppearanceLarge"
                        android:textColor="@color/accLow" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_sensors_low"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:gravity="center_vertical|center"
                        android:text="@string/dot"
                        android:textAppearance="?android:attr/textAppearanceLarge"
                        android:textColor="@color/accUnreliable" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_sensors_unreliable"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>
            </LinearLayout>

            <TextView
                style="?android:attr/listSeparatorTextViewStyle"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/title_legend_radio" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical" >

                <!-- Radio legend items go here -->
                <!-- TODO dividers between child layouts -->

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:gravity="center_vertical|center"
                        android:text="@string/dot"
                        android:textAppearance="?android:attr/textAppearanceLarge"
                        android:textColor="@color/gen2" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_radio_2g"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:gravity="center_vertical|center"
                        android:text="@string/dot"
                        android:textAppearance="?android:attr/textAppearanceLarge"
                        android:textColor="@color/gen3" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_radio_3g"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:gravity="center_vertical|center"
                        android:text="@string/dot"
                        android:textAppearance="?android:attr/textAppearanceLarge"
                        android:textColor="@color/gen4" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_radio_4g"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <ImageView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:scaleType="center"
                        android:src="@drawable/ic_content_wifi_open" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_radio_open"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <ImageView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:scaleType="center"
                        android:src="@drawable/ic_content_wifi_wep" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_radio_wep"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <ImageView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:scaleType="center"
                        android:src="@drawable/ic_content_wifi_psk" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_radio_psk"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <ImageView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:scaleType="center"
                        android:src="@drawable/ic_content_wifi_eap" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_radio_eap"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <ImageView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:scaleType="center"
                        android:src="@drawable/ic_content_wifi_adhoc" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_radio_adhoc"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/legend_rowheight"
                    android:measureWithLargestChild="false"
                    android:orientation="horizontal"
                    android:weightSum="22" >

                    <ImageView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical|center"
                        android:layout_weight="3"
                        android:scaleType="center"
                        android:src="@drawable/ic_content_wifi_unknown" />

                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_vertical"
                        android:layout_weight="19"
                        android:gravity="center_vertical"
                        android:text="@string/title_legend_radio_unknown"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>
            </LinearLayout>

            <TextView
                style="?android:attr/listSeparatorTextViewStyle"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/title_legend_map" />

            <LinearLayout
                android:id="@+id/legendMapContainer"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical" >

                <!-- Map legend items go here (added dynamically) -->

            </LinearLayout>
        </LinearLayout>
    </ScrollView>

</RelativeLayout>

================================================
FILE: res/layout/activity_main.xml
================================================
<com.vonglasow.michael.satstat.widgets.MapViewPager xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:keepScreenOn="true"
    tools:context=".MainActivity" >

</com.vonglasow.michael.satstat.widgets.MapViewPager>


================================================
FILE: res/layout/activity_map_download.xml
================================================
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    tools:context="${relativePackage}.${activityClass}" >

    <ProgressBar
        android:id="@+id/downloadProgress"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical|center_horizontal"
        android:visibility="gone" />

    <LinearLayout
        android:id="@+id/downloadErrorLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/downloadError"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:gravity="center_horizontal"
            android:text="@string/download_error"
            android:textAppearance="?android:attr/textAppearanceMedium" />

        <Button
            android:id="@+id/downloadRetry"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:text="@string/download_retry" />

    </LinearLayout>

    <pl.polidea.treeview.TreeViewList
        android:id="@+id/downloadList"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:divider="?android:attr/listDivider"
        android:dividerHeight="1dp"
        android:headerDividersEnabled="false"
        android:listSelector="@android:color/transparent"
        android:scrollbars="vertical" />

</FrameLayout>

================================================
FILE: res/layout/activity_settings.xml
================================================
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".SettingsActivity" >

</RelativeLayout>


================================================
FILE: res/layout/alert_map_path.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" >
    
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/map_path_title"
        android:textAppearance="?android:attr/textAppearanceMedium" />
    
    <EditText
        android:id="@+id/editPath"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inputType="text" >
    </EditText>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/map_path_fileman"
        android:textAppearance="?android:attr/textAppearanceSmall" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:gravity="center_horizontal" >

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <ImageButton
                android:id="@+id/btn_oi_filemanager"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="top|center_horizontal"
                android:src="@drawable/ic_launcher_oi_filemanager" />

            <TextView
                android:id="@+id/textView2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="top|center_horizontal"
                android:gravity="center_horizontal"
                android:paddingLeft="@dimen/activity_horizontal_margin"
                android:paddingRight="@dimen/activity_horizontal_margin"
                android:text="@string/map_path_oi_filemanager"
                android:textAppearance="?android:attr/textAppearanceSmall" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <ImageButton
                android:id="@+id/btn_cm_filemanager"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="top|center_horizontal"
                android:src="@drawable/ic_launcher_cmfilemanager" />

            <TextView
                android:id="@+id/textView3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="top|center_horizontal"
                android:gravity="center_horizontal"
                android:paddingLeft="@dimen/activity_horizontal_margin"
                android:paddingRight="@dimen/activity_horizontal_margin"
                android:text="@string/map_path_cm_filemanager"
                android:textAppearance="?android:attr/textAppearanceSmall" />

        </LinearLayout>

    </LinearLayout>

</LinearLayout>
</ScrollView>

================================================
FILE: res/layout/download_list_item.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="1"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/downloadListItem"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="TextView"
            android:textAppearance="?android:attr/textAppearanceMedium" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:weightSum="15" >

            <TextView
                android:id="@+id/downloadSize"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="6"
                android:text="Medium Text"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/downloadDate"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="9"
                android:text="Medium Text"
                android:textAppearance="?android:attr/textAppearanceSmall" />

        </LinearLayout>

        <ProgressBar
            android:id="@+id/downloadFileProgress"
            style="?android:attr/progressBarStyleHorizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            android:max="10"
            android:maxHeight="8dp"
            android:minHeight="8dp"
            android:paddingBottom="0dp"
            android:paddingTop="0dp"
            android:progress="5" />

    </LinearLayout>

    <ProgressBar
        android:id="@+id/downloadDirProgress"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical" />

    <ImageView
        android:id="@+id/downloadIcon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_marginBottom="2dp"
        android:paddingBottom="12dp"
        android:paddingLeft="12dp"
        android:paddingRight="12dp"
        android:paddingTop="12dp"
        android:src="@drawable/ic_file_download" />

    <ImageButton
        android:id="@+id/downloadCancel"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:layout_gravity="center_vertical"
        android:layout_marginBottom="2dp"
        android:src="@drawable/ic_cancel" />

</LinearLayout>


================================================
FILE: res/layout/fragment_main_dummy.xml
================================================
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity$DummySectionFragment" >

    <TextView
        android:id="@+id/section_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</RelativeLayout>


================================================
FILE: res/layout/fragment_main_gps.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/gpsRootLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="false"
        android:measureWithLargestChild="true"
        android:weightSum="24" >

        <LinearLayout
            android:id="@+id/gpsLatLayout"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="9"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="bottom"
                android:text="@string/title_gps_lat"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/gpsLat"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceMedium" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/gpsLonLayout"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="10"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="bottom"
                android:text="@string/title_gps_lon"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/gpsLon"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceMedium" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/gpsCoordLayout"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="19"
            android:orientation="vertical"
            android:visibility="gone" >

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="bottom"
                android:text="@string/title_gps_coord"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/gpsCoord"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceMedium" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="5"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView8"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="bottom"
                android:maxLines="1"
                android:text="@string/title_gps_alt"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:weightSum="8" >

                <TextView
                    android:id="@+id/gpsAlt"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:maxLines="1"
                    android:text="@string/value_none"
                    android:textAppearance="?android:attr/textAppearanceMedium" />

                <TextView
                    android:id="@+id/gpsAltUnit"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="bottom"
                    android:lines="1"
                    android:text=""
                    android:textAppearance="?android:attr/textAppearanceSmall" />
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="true"
        android:measureWithLargestChild="true"
        android:weightSum="24" >

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="9"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView12"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="bottom"
                android:lines="1"
                android:text="@string/title_gps_bear"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:weightSum="9" >

                <TextView
                    android:id="@+id/gpsBearing"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="4.5"
                    android:maxLines="1"
                    android:text="@string/value_none"
                    android:textAppearance="?android:attr/textAppearanceMedium" />

                <TextView
                    android:id="@+id/gpsOrientation"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="4.5"
                    android:maxLines="1"
                    android:text="@string/value_none"
                    android:textAppearance="?android:attr/textAppearanceMedium" />
            </LinearLayout>
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="6"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView6"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="bottom"
                android:lines="1"
                android:text="@string/title_gps_speed"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:weightSum="8" >

                <TextView
                    android:id="@+id/gpsSpeed"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:maxLines="1"
                    android:text="@string/value_none"
                    android:textAppearance="?android:attr/textAppearanceMedium" />

                <TextView
                    android:id="@+id/gpsSpeedUnit"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="bottom"
                    android:lines="1"
                    android:text=""
                    android:textAppearance="?android:attr/textAppearanceSmall" />
            </LinearLayout>
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="4"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView16"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="bottom"
                android:lines="1"
                android:text="@string/title_gps_acc"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:weightSum="8" >

                <TextView
                    android:id="@+id/gpsAccuracy"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:maxLines="1"
                    android:text="@string/value_none"
                    android:textAppearance="?android:attr/textAppearanceMedium" />

                <TextView
                    android:id="@+id/gpsAccuracyUnit"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="bottom"
                    android:lines="1"
                    android:text=""
                    android:textAppearance="?android:attr/textAppearanceSmall" />
            </LinearLayout>
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="5"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView17"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="bottom"
                android:lines="1"
                android:text="@string/title_gps_sats"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/gpsSats"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceMedium" />
        </LinearLayout>
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="true"
        android:measureWithLargestChild="true"
        android:weightSum="24" >

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="4.5"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView32"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="bottom"
                android:lines="1"
                android:text="@string/title_gps_decl"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/orDeclination"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceMedium" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="4.5"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView19"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="bottom"
                android:lines="1"
                android:text="@string/title_gps_ttff"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/gpsTtff"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceMedium" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="15"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView10"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="bottom"
                android:lines="1"
                android:text="@string/title_gps_time"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/gpsTime"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceMedium" />
        </LinearLayout>

    </LinearLayout>

    <com.vonglasow.michael.satstat.widgets.GpsSnrView
        android:id="@+id/gpsSnrView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</LinearLayout>

================================================
FILE: res/layout/fragment_main_map.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginRight="12dp"
    android:layout_marginTop="12dp"
    android:orientation="vertical"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/mapReattach"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="top|right"
        android:src="@drawable/ic_btn_reattach"
        app:fabSize="normal"
        app:useCompatPadding="true"
        app:backgroundTint="@color/accent" />

    	<!--
        android:background="#AA000000"
        android:padding="3dp"
        -->

    <TextView
        android:id="@+id/mapAttribution"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|center"
        android:background="@color/halo"
        android:text="@string/osm_attribution"
        android:textAppearance="?android:attr/textAppearanceSmallInverse"
        android:textSize="10dp" />
    
</FrameLayout>


================================================
FILE: res/layout/fragment_main_radio.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

<LinearLayout
    android:id="@+id/RootLayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/rilLteLayout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/TextView06"
            style="?android:attr/listSeparatorTextViewStyle"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/title_radio_lte" />

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:baselineAligned="true"
            android:measureWithLargestChild="false"
            android:weightSum="29" >

            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="2"
                android:orientation="vertical" >

                <TextView
                    android:id="@+id/TextView02"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textAppearance="?android:attr/textAppearanceSmall" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="3"
                android:orientation="vertical" >

                <TextView
                    android:id="@+id/TextView04"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/title_radio_mcc"
                    android:textAppearance="?android:attr/textAppearanceSmall" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="3"
                android:orientation="vertical"
                android:weightSum="3" >

                <TextView
                    android:id="@+id/TextView01"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/title_radio_mnc"
                    android:textAppearance="?android:attr/textAppearanceSmall" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="5"
                android:orientation="vertical" >

                <TextView
                    android:id="@+id/TextView05"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/title_radio_tac"
                    android:textAppearance="?android:attr/textAppearanceSmall" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="9"
                android:orientation="vertical" >

                <TextView
                    android:id="@+id/TextView03"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/title_radio_cellid"
                    android:textAppearance="?android:attr/textAppearanceSmall" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="3"
                android:orientation="vertical" >

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/title_radio_pci"
                    android:textAppearance="?android:attr/textAppearanceSmall" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="4"
                android:orientation="vertical" >

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/title_radio_level"
                    android:textAppearance="?android:attr/textAppearanceSmall" />
            </LinearLayout>
        </LinearLayout>

        <TableLayout
            android:id="@+id/rilLteCells"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:divider="?android:attr/listDivider"
            android:showDividers="beginning|middle" >

        </TableLayout>
    </LinearLayout>

	<LinearLayout
	    android:id="@+id/rilGsmLayout"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"
	    android:orientation="vertical" >
	
	    <TextView
	        android:id="@+id/rotHeader"
	        style="?android:attr/listSeparatorTextViewStyle"
	        android:layout_width="fill_parent"
	        android:layout_height="wrap_content"
	        android:text="@string/title_radio_gsm" />
	
	    <LinearLayout
	        android:layout_width="fill_parent"
	        android:layout_height="wrap_content"
	        android:baselineAligned="true"
	        android:measureWithLargestChild="false"
	        android:weightSum="29" >
	
	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="2"
	            android:orientation="vertical" >
	
	            <TextView
	                android:id="@+id/textView190"
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text=""
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	
	        </LinearLayout>
	
	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="3"
	            android:orientation="vertical" >
	
	            <TextView
	                android:id="@+id/textView19"
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text="@string/title_radio_mcc"
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	
	        </LinearLayout>
	
	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="3"
	            android:orientation="vertical"
	            android:weightSum="3" >
	
	            <TextView
	                android:id="@+id/textView21"
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text="@string/title_radio_mnc"
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	
	        </LinearLayout>
	        
	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="5"
	            android:orientation="vertical" >
	
	            <TextView
	                android:id="@+id/textView3"
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text="@string/title_radio_lac"
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	
	        </LinearLayout>
	        
	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="9"
	            android:orientation="vertical" >
	
	            <TextView
	                android:id="@+id/textView23"
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text="@string/title_radio_cellid"
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	
	        </LinearLayout>

	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="3"
	            android:orientation="vertical" >

	            <TextView
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text="@string/title_radio_psc"
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	        </LinearLayout>
	
	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="4"
	            android:orientation="vertical" >
	
	            <TextView
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text="@string/title_radio_level"
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	
	        </LinearLayout>
	
	        </LinearLayout>
	
	    <TableLayout
	        android:id="@+id/rilCells"
	        android:layout_width="match_parent"
	        android:layout_height="wrap_content"
	        android:divider="?android:attr/listDivider"
	        android:showDividers="beginning|middle" >
	
	    </TableLayout>
	
	</LinearLayout>

	<LinearLayout
	    android:id="@+id/rilCdmaLayout"
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"
	    android:orientation="vertical">
	    
	    <TextView
	        android:id="@+id/textView5"
	        style="?android:attr/listSeparatorTextViewStyle"
	        android:layout_width="fill_parent"
	        android:layout_height="wrap_content"
	        android:text="@string/title_radio_cdma" />
	
	    <LinearLayout
	        android:layout_width="fill_parent"
	        android:layout_height="wrap_content"
	        android:baselineAligned="true"
	        android:measureWithLargestChild="false"
	        android:weightSum="26" >
	
	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="2"
	            android:orientation="vertical" >
	
	            <TextView
	                android:id="@+id/textView191"
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text=""
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	
	        </LinearLayout>
	
	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="6"
	            android:orientation="vertical" >
	
	            <TextView
	                android:id="@+id/textView22"
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text="@string/title_radio_sid"
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	
	        </LinearLayout>
	
	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="5"
	            android:orientation="vertical">
	
	            <TextView
	                android:id="@+id/textView25"
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text="@string/title_radio_nid"
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	
	        </LinearLayout>
	
	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="9"
	            android:orientation="vertical" >
	
	            <TextView
	                android:id="@+id/textView24"
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text="@string/title_radio_bsid"
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	
	        </LinearLayout>
	
	        <LinearLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_weight="4"
	            android:orientation="vertical" >
	
	            <TextView
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:text="@string/title_radio_level"
	                android:textAppearance="?android:attr/textAppearanceSmall" />
	
	        </LinearLayout>
	
	        </LinearLayout>
	
	    <TableLayout
	        android:id="@+id/rilCdmaCells"
	        android:layout_width="match_parent"
	        android:layout_height="wrap_content"
	        android:divider="?android:attr/listDivider"
	        android:showDividers="beginning|middle" >
	
	    </TableLayout>
	</LinearLayout>
    
    <TextView
        android:id="@+id/textView4"
        style="?android:attr/listSeparatorTextViewStyle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/title_radio_wifi" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="true"
        android:measureWithLargestChild="false"
        android:weightSum="22" >

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="3"
            android:text=""
            android:textAppearance="?android:attr/textAppearanceSmall" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="14"
            android:text="@string/title_radio_mac"
            android:textAppearance="?android:attr/textAppearanceSmall" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="2"
            android:text="@string/title_radio_channel"
            android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="3"
                android:text="@string/title_radio_level"
                android:textAppearance="?android:attr/textAppearanceSmall" />

        </LinearLayout>

    <LinearLayout
        android:id="@+id/wifiAps"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:divider="?android:attr/listDivider"
        android:orientation="vertical"
        android:showDividers="beginning|middle" >

    </LinearLayout>
    
</LinearLayout>
</ScrollView>

================================================
FILE: res/layout/fragment_main_sensors.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

<LinearLayout
    android:id="@+id/RootLayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/accStatus"
            style="?android:attr/listSeparatorTextViewStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/dotSpace"
            android:textColor="@android:color/transparent" />

        <TextView
            android:id="@+id/accHeader"
            style="?android:attr/listSeparatorTextViewStyle"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/title_sensor_acc" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="true"
        android:measureWithLargestChild="false"
        android:weightSum="4" >

        <LinearLayout
            android:id="@+id/accAccuracyContainer"
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_accTotal"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/accTotal"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView19"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_accX"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/accX"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical"
            android:weightSum="3" >

            <TextView
                android:id="@+id/textView21"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_accY"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/accY"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView23"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_accZ"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/accZ"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/rotStatus"
            style="?android:attr/listSeparatorTextViewStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/dotSpace"
            android:textColor="@android:color/transparent" />

        <TextView
            android:id="@+id/rotHeader"
            style="?android:attr/listSeparatorTextViewStyle"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/title_sensor_rot" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="true"
        android:measureWithLargestChild="false"
        android:weightSum="4" >

        <LinearLayout
            android:id="@+id/rotAccuracyContainer"
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView36"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_rotTotal"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/rotTotal"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView33"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_rotX"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/rotX"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical"
            android:weightSum="3" >

            <TextView
                android:id="@+id/textView34"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_rotY"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/rotY"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView35"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_rotZ"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/rotZ"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/magStatus"
            style="?android:attr/listSeparatorTextViewStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/dotSpace"
            android:textColor="@android:color/transparent" />

        <TextView
            android:id="@+id/magHeader"
            style="?android:attr/listSeparatorTextViewStyle"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/title_sensor_mag" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="true"
        android:measureWithLargestChild="false"
        android:weightSum="4" >

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView24"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_magTotal"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/magTotal"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView25"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_magX"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/magX"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical"
            android:weightSum="3" >

            <TextView
                android:id="@+id/textView26"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_magY"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/magY"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView27"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_magZ"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/magZ"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:maxLines="1"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/orStatus"
            style="?android:attr/listSeparatorTextViewStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/dotSpace"
            android:textColor="@android:color/transparent" />

        <TextView
            android:id="@+id/orHeader"
            style="?android:attr/listSeparatorTextViewStyle"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/title_sensor_or" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="true"
        android:measureWithLargestChild="false"
        android:weightSum="4" >

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="2"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView28"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_orAzimuth"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:weightSum="2" >

                <TextView
                    android:id="@+id/orAzimuth"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="@string/value_none"
                    android:textAppearance="?android:attr/textAppearanceLarge" />

                <TextView
                    android:id="@+id/orAziText"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="@string/value_none"
                    android:textAppearance="?android:attr/textAppearanceLarge" />

            </LinearLayout>

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView29"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_orPitch"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/orPitch"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView30"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_orRoll"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <TextView
                android:id="@+id/orRoll"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

        </LinearLayout>

    </LinearLayout>

    <TextView
        android:id="@+id/miscHeader"
        style="?android:attr/listSeparatorTextViewStyle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/title_sensor_misc" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="true"
        android:measureWithLargestChild="false"
        android:weightSum="22" >

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="5" >

            <TextView
                android:id="@+id/tempStatus"
                android:layout_width="wrap_content"
                android:layout_height="fill_parent"
                android:gravity="right|center_vertical"
                android:text="@string/dotSpace"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:textColor="@android:color/transparent" />

            <TextView
                android:id="@+id/metTemp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

            <TextView
                android:id="@+id/tempHeader"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_metTemp"
                android:textAppearance="?android:attr/textAppearanceSmall" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="8" >

            <TextView
                android:id="@+id/pressureStatus"
                android:layout_width="wrap_content"
                android:layout_height="fill_parent"
                android:gravity="right|center_vertical"
                android:text="@string/dotSpace"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:textColor="@android:color/transparent" />

            <TextView
                android:id="@+id/metPressure"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

            <TextView
                android:id="@+id/pressureHeader"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_metPressure"
                android:textAppearance="?android:attr/textAppearanceSmall" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="9" >

            <TextView
                android:id="@+id/lightStatus"
                android:layout_width="wrap_content"
                android:layout_height="fill_parent"
                android:gravity="right|center_vertical"
                android:text="@string/dotSpace"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:textColor="@android:color/transparent" />

            <TextView
                android:id="@+id/light"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:text="@string/value_none"
                android:textAppearance="?android:attr/textAppearanceLarge" />

            <TextView
                android:id="@+id/lightHeader"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_light"
                android:textAppearance="?android:attr/textAppearanceSmall" />

        </LinearLayout>

    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="true"
        android:measureWithLargestChild="false"
        android:weightSum="22" >

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="13"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/humidHeader"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_metHumid"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >

                <TextView
                    android:id="@+id/humidStatus"
                    android:layout_width="wrap_content"
                    android:layout_height="fill_parent"
                    android:gravity="right|center_vertical"
                    android:text="@string/dotSpace"
                    android:textAppearance="?android:attr/textAppearanceSmall"
                    android:textColor="@android:color/transparent" />

                <TextView
                    android:id="@+id/metHumid"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="right"
                    android:text="@string/value_none"
                    android:textAppearance="?android:attr/textAppearanceLarge" />
            </LinearLayout>
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="9"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/proximityHeader"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="@string/title_sensors_proximity"
                android:textAppearance="?android:attr/textAppearanceSmall" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >

                <TextView
                    android:id="@+id/proximityStatus"
                    android:layout_width="wrap_content"
                    android:layout_height="fill_parent"
                    android:gravity="right|center_vertical"
                    android:text="@string/dotSpace"
                    android:textAppearance="?android:attr/textAppearanceSmall"
                    android:textColor="@android:color/transparent" />

                <TextView
                    android:id="@+id/proximity"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:gravity="right"
                    android:text="@string/value_none"
                    android:textAppearance="?android:attr/textAppearanceLarge" />

            </LinearLayout>

        </LinearLayout>

    </LinearLayout>

</LinearLayout>
</ScrollView>

================================================
FILE: res/layout/ril_cdma_list_item.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightSum="26" >

    <TextView
        android:id="@+id/type"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/sid"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="6"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/nid"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="5"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/bsid"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="9"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/dbm"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="4"
        android:textAppearance="?android:attr/textAppearanceMedium" />

</TableRow>

================================================
FILE: res/layout/ril_list_item.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:weightSum="29" >

    <TextView
        android:id="@+id/type"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="2"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/mcc"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="3"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/mnc"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="3"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/area"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="5"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="9"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/cell"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceMedium" />

        <TextView
            android:id="@+id/cell2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall" />
    </LinearLayout>

    <TextView
        android:id="@+id/unit"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="3"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/dbm"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="4"
        android:textAppearance="?android:attr/textAppearanceMedium" />

</TableRow>

================================================
FILE: res/layout/tree_list_item_wrapper.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent"
	android:layout_height="fill_parent" >
	<LinearLayout android:id="@+id/treeview_list_item_image_layout" android:layout_width="80dip"
		android:layout_height="fill_parent" android:gravity="right|center_vertical">
		<ImageView android:id="@+id/treeview_list_item_image" android:layout_width="wrap_content"
			android:layout_height="wrap_content" android:src="@drawable/collapsed" >
		</ImageView>
	</LinearLayout>
	<FrameLayout android:id="@+id/treeview_list_item_frame" android:layout_width="fill_parent"
		android:layout_height="fill_parent" android:layout_weight="1">
	</FrameLayout>
</LinearLayout>


================================================
FILE: res/layout-land/fragment_main_gps.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/gpsRootLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_weight="1" >

        <LinearLayout
            android:layout_width="320dp"
            android:layout_height="match_parent"
            android:gravity="center_vertical"
            android:orientation="vertical" >

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:baselineAligned="false"
                android:measureWithLargestChild="true"
                android:weightSum="24" >

                <LinearLayout
                    android:id="@+id/gpsLatLayout"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="9"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView2"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="bottom"
                        android:text="@string/title_gps_lat"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/gpsLat"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:id="@+id/gpsLonLayout"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="10"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView4"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="bottom"
                        android:text="@string/title_gps_lon"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/gpsLon"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:id="@+id/gpsCoordLayout"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="19"
                    android:orientation="vertical"
                    android:visibility="gone" >

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="bottom"
                        android:text="@string/title_gps_coord"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/gpsCoord"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="5"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView8"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="bottom"
                        android:maxLines="1"
                        android:text="@string/title_gps_alt"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:weightSum="8" >

                        <TextView
                            android:id="@+id/gpsAlt"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:maxLines="1"
                            android:text="@string/value_none"
                            android:textAppearance="?android:attr/textAppearanceMedium" />

                        <TextView
                            android:id="@+id/gpsAltUnit"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:gravity="bottom"
                            android:lines="1"
                            android:text=""
                            android:textAppearance="?android:attr/textAppearanceSmall" />
                    </LinearLayout>
                </LinearLayout>
            </LinearLayout>

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:baselineAligned="true"
                android:measureWithLargestChild="true"
                android:weightSum="24" >

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="9"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView12"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="bottom"
                        android:lines="1"
                        android:text="@string/title_gps_bear"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:weightSum="9" >

                        <TextView
                            android:id="@+id/gpsBearing"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_weight="4.5"
                            android:maxLines="1"
                            android:text="@string/value_none"
                            android:textAppearance="?android:attr/textAppearanceMedium" />

                        <TextView
                            android:id="@+id/gpsOrientation"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_weight="4.5"
                            android:maxLines="1"
                            android:text="@string/value_none"
                            android:textAppearance="?android:attr/textAppearanceMedium" />
                    </LinearLayout>
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="6"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView6"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="bottom"
                        android:lines="1"
                        android:text="@string/title_gps_speed"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:weightSum="8" >

                        <TextView
                            android:id="@+id/gpsSpeed"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:maxLines="1"
                            android:text="@string/value_none"
                            android:textAppearance="?android:attr/textAppearanceMedium" />

                        <TextView
                            android:id="@+id/gpsSpeedUnit"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:gravity="bottom"
                            android:lines="1"
                            android:text=""
                            android:textAppearance="?android:attr/textAppearanceSmall" />
                    </LinearLayout>
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="4"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView16"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="bottom"
                        android:lines="1"
                        android:text="@string/title_gps_acc"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:weightSum="8" >

                        <TextView
                            android:id="@+id/gpsAccuracy"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:maxLines="1"
                            android:text="@string/value_none"
                            android:textAppearance="?android:attr/textAppearanceMedium" />

                        <TextView
                            android:id="@+id/gpsAccuracyUnit"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:gravity="bottom"
                            android:lines="1"
                            android:text=""
                            android:textAppearance="?android:attr/textAppearanceSmall" />
                    </LinearLayout>
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="5"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView17"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="bottom"
                        android:lines="1"
                        android:text="@string/title_gps_sats"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/gpsSats"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>
            </LinearLayout>

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:baselineAligned="true"
                android:measureWithLargestChild="true"
                android:weightSum="24" >

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="4.5"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView32"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="bottom"
                        android:lines="1"
                        android:text="@string/title_gps_decl"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/orDeclination"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="4.5"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView19"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="bottom"
                        android:lines="1"
                        android:text="@string/title_gps_ttff"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/gpsTtff"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="15"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView10"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="bottom"
                        android:lines="1"
                        android:text="@string/title_gps_time"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/gpsTime"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>

    <com.vonglasow.michael.satstat.widgets.GpsSnrView
        android:id="@+id/gpsSnrView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</LinearLayout>

================================================
FILE: res/layout-land/fragment_main_sensors.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="false"
        android:weightSum="48" >

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="25"
            android:orientation="vertical" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >

                <TextView
                    android:id="@+id/accStatus"
                    style="?android:attr/listSeparatorTextViewStyle"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/dotSpace"
                    android:textColor="@android:color/transparent" />

                <TextView
                    android:id="@+id/accHeader"
                    style="?android:attr/listSeparatorTextViewStyle"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/title_sensor_acc" />

            </LinearLayout>

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:baselineAligned="true"
                android:measureWithLargestChild="false"
                android:weightSum="4" >

                <LinearLayout
                    android:id="@+id/accAccuracyContainer"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView3"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_accTotal"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/accTotal"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView19"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_accX"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/accX"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="right"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical"
                    android:weightSum="3" >

                    <TextView
                        android:id="@+id/textView21"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_accY"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/accY"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="right"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView23"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_accZ"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/accZ"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="right"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >

                <TextView
                    android:id="@+id/rotStatus"
                    style="?android:attr/listSeparatorTextViewStyle"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/dotSpace"
                    android:textColor="@android:color/transparent" />

                <TextView
                    android:id="@+id/rotHeader"
                    style="?android:attr/listSeparatorTextViewStyle"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/title_sensor_rot" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:baselineAligned="true"
                android:measureWithLargestChild="false"
                android:weightSum="4" >

                <LinearLayout
                    android:id="@+id/rotAccuracyContainer"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView36"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_rotTotal"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/rotTotal"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView33"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_rotX"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/rotX"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="right"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical"
                    android:weightSum="3" >

                    <TextView
                        android:id="@+id/textView34"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_rotY"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/rotY"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="right"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView35"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_rotZ"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/rotZ"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="right"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>
            </LinearLayout>

        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="23"
            android:orientation="vertical"
            android:paddingLeft="@dimen/activity_vertical_margin" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >

                <TextView
                    android:id="@+id/magStatus"
                    style="?android:attr/listSeparatorTextViewStyle"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/dotSpace"
                    android:textColor="@android:color/transparent" />

                <TextView
                    android:id="@+id/magHeader"
                    style="?android:attr/listSeparatorTextViewStyle"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/title_sensor_mag" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:baselineAligned="true"
                android:measureWithLargestChild="false"
                android:weightSum="4" >

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView24"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_magTotal"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/magTotal"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView25"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_magX"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/magX"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="right"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical"
                    android:weightSum="3" >

                    <TextView
                        android:id="@+id/textView26"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_magY"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/magY"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="right"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:orientation="vertical" >

                    <TextView
                        android:id="@+id/textView27"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_magZ"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <TextView
                        android:id="@+id/magZ"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:gravity="right"
                        android:maxLines="1"
                        android:text="@string/value_none"
                        android:textAppearance="?android:attr/textAppearanceMedium" />
                </LinearLayout>
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >

                <TextView
                    android:id="@+id/orStatus"
                    style="?android:attr/listSeparatorTextViewStyle"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/dotSpace"
                    android:textColor="@android:color/transparent" />

                <TextView
                    android:id="@+id/orHeader"
                    style="?android:attr/listSeparatorTextViewStyle"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/title_sensor_or" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:baselineAligned="false"
                android:measureWithLargestChild="false"
                android:weightSum="4" >

                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="2"
                    android:orientation="vertical"
                    android:weightSum="2" >

                    <TextView
                        android:id="@+id/textView28"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/title_sensors_orAzimuth"
                        android:textAppearance="?android:attr/textAppearanceSmall" />

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content" >

                        <TextView
                            android:id="@+id/orAzimuth"
                            android:layout_width="0dp"
                            android:layout_height="wrap_content"
                            android:layout_weight="1"
                            android:text="@string/value_none"
                            android:textAppearance="?android:attr/textAppearanceMedium" />

                        <TextView
                            android:id="@+id/orAziText"
                            android:layout_widt
Download .txt
gitextract_u1yto3lt/

├── .classpath
├── .externalToolBuilders/
│   └── Set Build Info.launch
├── .gitignore
├── .project
├── .settings/
│   └── org.eclipse.jdt.core.prefs
├── AndroidManifest.xml
├── LICENSE
├── README.md
├── build.gradle
├── libs/
│   ├── android-support-v4.jar
│   ├── androidsvg-1.2.2-beta-1.jar
│   ├── kxml2-2.3.0.jar
│   ├── mapsforge-core-0.9.1.jar
│   ├── mapsforge-map-0.9.1.jar
│   ├── mapsforge-map-android-0.9.1.jar
│   ├── mapsforge-map-reader-0.9.1.jar
│   └── mapsforge-themes-0.9.1.jar
├── metadata/
│   └── en-US/
│       └── changelogs/
│           ├── 10.txt
│           ├── 20.txt
│           ├── 2000.txt
│           ├── 2010.txt
│           ├── 2020.txt
│           ├── 30.txt
│           ├── 3000.txt
│           ├── 3010.txt
│           ├── 3020.txt
│           ├── 3030.txt
│           ├── 40.txt
│           ├── 50.txt
│           ├── 60.txt
│           ├── 70.txt
│           └── 80.txt
├── mkpng
├── proguard-project.txt
├── project.properties
├── res/
│   ├── drawable/
│   │   ├── divider.xml
│   │   ├── ic_stat_notify_nolocation.xml
│   │   ├── list_selector_background.xml
│   │   ├── list_selector_background_transition.xml
│   │   ├── zoom_control_in.xml
│   │   └── zoom_control_out.xml
│   ├── layout/
│   │   ├── activity_about.xml
│   │   ├── activity_legend.xml
│   │   ├── activity_main.xml
│   │   ├── activity_map_download.xml
│   │   ├── activity_settings.xml
│   │   ├── alert_map_path.xml
│   │   ├── download_list_item.xml
│   │   ├── fragment_main_dummy.xml
│   │   ├── fragment_main_gps.xml
│   │   ├── fragment_main_map.xml
│   │   ├── fragment_main_radio.xml
│   │   ├── fragment_main_sensors.xml
│   │   ├── ril_cdma_list_item.xml
│   │   ├── ril_list_item.xml
│   │   └── tree_list_item_wrapper.xml
│   ├── layout-land/
│   │   ├── fragment_main_gps.xml
│   │   └── fragment_main_sensors.xml
│   ├── layout-w640dp/
│   │   └── fragment_main_radio.xml
│   ├── menu/
│   │   └── main.xml
│   ├── raw/
│   │   └── .gitignore
│   ├── values/
│   │   ├── attrs.xml
│   │   ├── dimens.xml
│   │   ├── strings.xml
│   │   ├── styles.xml
│   │   └── treeview_styles.xml
│   ├── values-ca/
│   │   └── strings.xml
│   ├── values-de/
│   │   └── strings.xml
│   ├── values-es/
│   │   └── strings.xml
│   ├── values-fr/
│   │   └── strings.xml
│   ├── values-hu/
│   │   └── strings.xml
│   ├── values-it/
│   │   └── strings.xml
│   ├── values-lt/
│   │   └── strings.xml
│   ├── values-pt-rBR/
│   │   └── strings.xml
│   ├── values-sw600dp/
│   │   └── dimens.xml
│   ├── values-sw720dp-land/
│   │   └── dimens.xml
│   ├── values-v21/
│   │   └── styles.xml
│   └── xml/
│       └── preferences.xml
├── setbuild.sh
└── src/
    ├── com/
    │   ├── hzi/
    │   │   └── UTM.java
    │   └── vonglasow/
    │       └── michael/
    │           └── satstat/
    │               ├── Const.java
    │               ├── GpsEventReceiver.java
    │               ├── PasvLocListenerService.java
    │               ├── SatStatApplication.java
    │               ├── data/
    │               │   ├── CellTower.java
    │               │   ├── CellTowerCdma.java
    │               │   ├── CellTowerGsm.java
    │               │   ├── CellTowerList.java
    │               │   ├── CellTowerListCdma.java
    │               │   ├── CellTowerListGsm.java
    │               │   ├── CellTowerListLte.java
    │               │   └── CellTowerLte.java
    │               ├── ui/
    │               │   ├── AboutActivity.java
    │               │   ├── GpsSectionFragment.java
    │               │   ├── LegendActivity.java
    │               │   ├── MainActivity.java
    │               │   ├── MapDownloadActivity.java
    │               │   ├── MapSectionFragment.java
    │               │   ├── RadioSectionFragment.java
    │               │   ├── SensorSectionFragment.java
    │               │   └── SettingsActivity.java
    │               ├── utils/
    │               │   ├── DownloadTreeViewAdapter.java
    │               │   ├── HttpDownloader.java
    │               │   ├── PermissionHelper.java
    │               │   ├── RemoteDirListListener.java
    │               │   ├── RemoteDirListTask.java
    │               │   ├── RemoteFile.java
    │               │   ├── RemoteFileComparator.java
    │               │   ├── WifiCapabilities.java
    │               │   └── WifiScanResultComparator.java
    │               └── widgets/
    │                   ├── GpsSnrView.java
    │                   ├── GpsStatusView.java
    │                   ├── LocProviderPreference.java
    │                   ├── MapViewPager.java
    │                   ├── NetworkTypePreference.java
    │                   └── SquareView.java
    ├── pl/
    │   └── polidea/
    │       └── treeview/
    │           ├── AbstractTreeViewAdapter.java
    │           ├── DownloadTreeStateManager.java
    │           ├── InMemoryTreeNode.java
    │           ├── InMemoryTreeStateManager.java
    │           ├── NodeAlreadyInTreeException.java
    │           ├── NodeNotInTreeException.java
    │           ├── TreeBuilder.java
    │           ├── TreeConfigurationException.java
    │           ├── TreeNodeInfo.java
    │           ├── TreeStateManager.java
    │           ├── TreeViewList.java
    │           ├── overview.html
    │           └── package-info.java
    └── uk/
        └── me/
            └── jstott/
                └── jcoord/
                    ├── CoordinateSystem.java
                    ├── ECEFRef.java
                    ├── IrishRef.java
                    ├── LatLng.java
                    ├── MGRSRef.java
                    ├── NotDefinedOnUTMGridException.java
                    ├── OSRef.java
                    ├── RefEll.java
                    ├── Test.java
                    ├── UTMRef.java
                    ├── Util.java
                    ├── datum/
                    │   ├── Datum.java
                    │   ├── ETRF89Datum.java
                    │   ├── Ireland1965Datum.java
                    │   ├── OSGB36Datum.java
                    │   ├── WGS84Datum.java
                    │   └── nad27/
                    │       ├── NAD27AlaskaDatum.java
                    │       ├── NAD27AlbertaBritishColumbiaDatum.java
                    │       ├── NAD27AleutianEastDatum.java
                    │       ├── NAD27AleutianWestDatum.java
                    │       ├── NAD27BahamasDatum.java
                    │       ├── NAD27CanadaDatum.java
                    │       ├── NAD27CanadaEastDatum.java
                    │       ├── NAD27CanadaManitobaOntarioDatum.java
                    │       ├── NAD27CanadaNWTerritoryDatum.java
                    │       ├── NAD27CanadaYukonDatum.java
                    │       ├── NAD27CanalZoneDatum.java
                    │       ├── NAD27CaribbeanDatum.java
                    │       ├── NAD27CentralAmericaDatum.java
                    │       ├── NAD27ContiguousUSDatum.java
                    │       ├── NAD27CubaDatum.java
                    │       ├── NAD27EasternUSDatum.java
                    │       ├── NAD27GreenlandDatum.java
                    │       ├── NAD27MexicoDatum.java
                    │       ├── NAD27SanSalvadorDatum.java
                    │       └── NAD27WesternUSDatum.java
                    └── ellipsoid/
                        ├── Airy1830Ellipsoid.java
                        ├── AustralianNational1966Ellipsoid.java
                        ├── Bessel1841Ellipsoid.java
                        ├── Clarke1866Ellipsoid.java
                        ├── Clarke1880Ellipsoid.java
                        ├── Ellipsoid.java
                        ├── EverestEllipsoid.java
                        ├── Fischer1960Ellipsoid.java
                        ├── Fischer1968Ellipsoid.java
                        ├── GRS67Ellipsoid.java
                        ├── GRS75Ellipsoid.java
                        ├── GRS80Ellipsoid.java
                        ├── Hayford1910Ellipsoid.java
                        ├── Helmert1906Ellipsoid.java
                        ├── Hough1956Ellipsoid.java
                        ├── IERS1989Ellipsoid.java
                        ├── InternationalEllipsoid.java
                        ├── Krassovsky1940Ellipsoid.java
                        ├── ModifiedAiryEllipsoid.java
                        ├── ModifiedEverestEllipsoid.java
                        ├── NewInternational1967Ellipsoid.java
                        ├── SouthAmerican1969Ellipsoid.java
                        ├── WGS60Ellipsoid.java
                        ├── WGS66Ellipsoid.java
                        ├── WGS72Ellipsoid.java
                        └── WGS84Ellipsoid.java
Download .txt
SYMBOL INDEX (761 symbols across 110 files)

FILE: src/com/hzi/UTM.java
  class UTM (line 15) | public class UTM {
    method hzi01 (line 17) | public static double hzi01(double x) {
    method lat_lon_to_utm (line 21) | public static String lat_lon_to_utm(double Lat, double Long, Context c) {

FILE: src/com/vonglasow/michael/satstat/Const.java
  class Const (line 30) | public class Const {

FILE: src/com/vonglasow/michael/satstat/GpsEventReceiver.java
  class GpsEventReceiver (line 49) | public class GpsEventReceiver extends BroadcastReceiver {
    method onReceive (line 67) | @Override
    method refreshAgps (line 155) | public static void refreshAgps(Context context, boolean enforceInterva...
    class AgpsUpdateTask (line 176) | private static class AgpsUpdateTask extends AsyncTask<Object, Void, In...
      method AgpsUpdateTask (line 180) | public AgpsUpdateTask(boolean wantFeedback) {
      method doInBackground (line 191) | @Override
      method onPostExecute (line 242) | @Override

FILE: src/com/vonglasow/michael/satstat/PasvLocListenerService.java
  class PasvLocListenerService (line 53) | public class PasvLocListenerService extends Service implements GpsStatus...
    method onReceive (line 75) | @Override
    method onBind (line 94) | @Override
    method onCreate (line 99) | @Override
    method onDestroy (line 115) | @Override
    method onGpsStatusChanged (line 124) | @Override
    method onLocationChanged (line 141) | @Override
    method onProviderDisabled (line 233) | @Override
    method onProviderEnabled (line 239) | @Override
    method onRequestPermissionsResult (line 245) | @Override
    method onSharedPreferenceChanged (line 260) | @Override
    method onStartCommand (line 279) | @Override
    method onStatusChanged (line 324) | @Override
    method showStatusNoLocation (line 328) | public void showStatusNoLocation() {
    method requestLocationUpdates (line 344) | private void requestLocationUpdates() {
    method requestPermissions (line 349) | private void requestPermissions() {

FILE: src/com/vonglasow/michael/satstat/SatStatApplication.java
  class SatStatApplication (line 29) | public class SatStatApplication extends Application implements OnRequest...
    method onRequestPermissionsResult (line 31) | @Override

FILE: src/com/vonglasow/michael/satstat/data/CellTower.java
  class CellTower (line 6) | public abstract class CellTower {
    method getAltText (line 39) | public String getAltText() {
    method getDbm (line 43) | public int getDbm() {
    method getGeneration (line 47) | public int getGeneration() {
    method getGenerationFromNetworkType (line 56) | public static int getGenerationFromNetworkType(int networkType) {
    method getText (line 94) | public abstract String getText();
    method hasSource (line 105) | public boolean hasSource() {
    method isCellInfo (line 109) | public boolean isCellInfo() {
    method isCellLocation (line 113) | public boolean isCellLocation() {
    method isNeighboringCellInfo (line 117) | public boolean isNeighboringCellInfo() {
    method isServing (line 127) | public boolean isServing() {
    method matches (line 145) | public static boolean matches(int l, int r) {
    method setCellInfo (line 151) | public void setCellInfo(boolean value) {
    method setCellLocation (line 158) | public void setCellLocation(boolean value) {
    method setDbm (line 165) | public void setDbm(int dbm) {
    method setGeneration (line 169) | public void setGeneration(int generation) {
    method setNeighboringCellInfo (line 175) | public void setNeighboringCellInfo(boolean value) {
    method setNetworkType (line 189) | public void setNetworkType(int networkType) {
    method setServing (line 195) | public void setServing(boolean serving) {

FILE: src/com/vonglasow/michael/satstat/data/CellTowerCdma.java
  class CellTowerCdma (line 3) | public class CellTowerCdma extends CellTower {
    method CellTowerCdma (line 10) | public CellTowerCdma(int sid, int nid, int bsid) {
    method getBsid (line 17) | public int getBsid() {
    method getNid (line 21) | public int getNid() {
    method getSid (line 25) | public int getSid() {
    method getText (line 40) | @Override
    method getText (line 49) | public static String getText(int sid, int nid, int bsid) {
    method setBsid (line 58) | public void setBsid(int bsid) {
    method setNid (line 65) | public void setNid(int nid) {
    method setSid (line 72) | public void setSid(int sid) {

FILE: src/com/vonglasow/michael/satstat/data/CellTowerGsm.java
  class CellTowerGsm (line 3) | public class CellTowerGsm extends CellTower {
    method CellTowerGsm (line 14) | public CellTowerGsm(int mcc, int mnc, int lac, int cid, int psc) {
    method getAltText (line 38) | public String getAltText() {
    method getAltText (line 46) | public static String getAltText(int psc) {
    method getCid (line 52) | public int getCid() {
    method getLac (line 56) | public int getLac() {
    method getMcc (line 60) | public int getMcc() {
    method getMnc (line 64) | public int getMnc() {
    method getPsc (line 68) | public int getPsc() {
    method getText (line 84) | @Override
    method getText (line 93) | public static String getText(int mcc, int mnc, int lac, int cid) {
    method setAsu (line 112) | public void setAsu(int asu){
    method setCid (line 117) | public void setCid(int cid) {
    method setCpichRscp (line 142) | public void setCpichRscp(int rscp){
    method setLac (line 149) | public void setLac(int lac) {
    method setMcc (line 156) | public void setMcc(int mcc) {
    method setMnc (line 163) | public void setMnc(int mnc) {
    method setPsc (line 170) | public void setPsc(int psc) {

FILE: src/com/vonglasow/michael/satstat/data/CellTowerList.java
  class CellTowerList (line 8) | public abstract class CellTowerList<T extends CellTower> extends HashMap...
    method getAll (line 16) | public Set<T> getAll() {
    method removeSource (line 34) | public void removeSource(int source) {

FILE: src/com/vonglasow/michael/satstat/data/CellTowerListCdma.java
  class CellTowerListCdma (line 12) | public class CellTowerListCdma extends CellTowerList<CellTowerCdma> {
    method get (line 16) | public CellTowerCdma get(int sid, int nid, int bsid) {
    method update (line 34) | public CellTowerCdma update(CdmaCellLocation location) {
    method update (line 55) | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    method updateAll (line 81) | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)

FILE: src/com/vonglasow/michael/satstat/data/CellTowerListGsm.java
  class CellTowerListGsm (line 17) | public class CellTowerListGsm extends CellTowerList<CellTowerGsm> {
    method get (line 21) | public CellTowerGsm get(int psc) {
    method get (line 32) | public CellTowerGsm get(int mcc, int mnc, int lac, int cid) {
    method update (line 52) | public CellTowerGsm update(String networkOperator, GsmCellLocation loc...
    method update (line 103) | public CellTowerGsm update(String networkOperator, NeighboringCellInfo...
    method update (line 180) | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    method update (line 232) | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
    method updateAll (line 284) | public void updateAll(List<CellInfo> cells) {
    method updateAll (line 307) | public void updateAll(String networkOperator, List<NeighboringCellInfo...

FILE: src/com/vonglasow/michael/satstat/data/CellTowerListLte.java
  class CellTowerListLte (line 15) | public class CellTowerListLte extends CellTowerList<CellTowerLte> {
    method get (line 19) | public CellTowerLte get(int pci) {
    method get (line 30) | public CellTowerLte get(int mcc, int mnc, int tac, int ci) {
    method update (line 50) | public CellTowerLte update(String networkOperator, GsmCellLocation loc...
    method update (line 100) | public CellTowerLte update(String networkOperator, NeighboringCellInfo...
    method update (line 163) | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    method updateAll (line 216) | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    method updateAll (line 237) | public void updateAll(String networkOperator, List<NeighboringCellInfo...

FILE: src/com/vonglasow/michael/satstat/data/CellTowerLte.java
  class CellTowerLte (line 3) | public class CellTowerLte extends CellTower {
    method CellTowerLte (line 13) | public CellTowerLte(int mcc, int mnc, int tac, int ci, int pci) {
    method getAltText (line 38) | public String getAltText() {
    method getAltText (line 46) | public static String getAltText(int pci) {
    method getCi (line 52) | public int getCi() {
    method getTac (line 56) | public int getTac() {
    method getMcc (line 60) | public int getMcc() {
    method getMnc (line 64) | public int getMnc() {
    method getPci (line 68) | public int getPci() {
    method getText (line 84) | @Override
    method getText (line 93) | public static String getText(int mcc, int mnc, int tac, int ci) {
    method setAsu (line 112) | public void setAsu(int asu){
    method setCi (line 117) | public void setCi(int ci) {
    method setTac (line 124) | public void setTac(int tac) {
    method setMcc (line 131) | public void setMcc(int mcc) {
    method setMnc (line 138) | public void setMnc(int mnc) {
    method setPci (line 145) | public void setPci(int pci) {

FILE: src/com/vonglasow/michael/satstat/ui/AboutActivity.java
  class AboutActivity (line 36) | public class AboutActivity extends AppCompatActivity {
    method onCreate (line 38) | @Override
    method onOptionsItemSelected (line 72) | @Override

FILE: src/com/vonglasow/michael/satstat/ui/GpsSectionFragment.java
  class GpsSectionFragment (line 56) | public class GpsSectionFragment extends Fragment {
    method GpsSectionFragment (line 100) | public GpsSectionFragment() {
    method onCreateView (line 104) | @Override
    method onDestroyView (line 145) | @Override
    method onGpsStatusChanged (line 156) | public void onGpsStatusChanged(GpsStatus status, int satsInView, int s...
    method onLocationChanged (line 168) | public void onLocationChanged(Location location) {
    method onSensorChanged (line 296) | public void onSensorChanged(SensorEvent event) {

FILE: src/com/vonglasow/michael/satstat/ui/LegendActivity.java
  class LegendActivity (line 42) | public class LegendActivity extends AppCompatActivity {
    method addLocationProvider (line 50) | protected void addLocationProvider(String title, String styleName) {
    method onCreate (line 84) | @Override
    method onOptionsItemSelected (line 110) | @Override

FILE: src/com/vonglasow/michael/satstat/ui/MainActivity.java
  class MainActivity (line 104) | public class MainActivity extends AppCompatActivity implements GpsStatus...
    method onCellInfoChanged (line 214) | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    method onCellLocationChanged (line 222) | public void onCellLocationChanged (CellLocation location) {
    method onDataConnectionStateChanged (line 227) | public void onDataConnectionStateChanged (int state, int networkType) {
    method onSignalStrengthsChanged (line 232) | public void onSignalStrengthsChanged (SignalStrength signalStrength) {
    method onReceive (line 242) | @Override
    method formatOrientation (line 262) | public static String formatOrientation(Context context, float bearing) {
    method getServingCell (line 297) | public static CellTower getServingCell(CellTowerList[] lists) {
    method onAccuracyChanged (line 310) | public void onAccuracyChanged(Sensor sensor, int accuracy) {}
    method onCreate (line 312) | @Override
    method onCreateOptionsMenu (line 434) | @Override
    method onDestroy (line 442) | @Override
    method onGpsStatusChanged (line 451) | public void onGpsStatusChanged (int event) {
    method onLocationChanged (line 476) | public void onLocationChanged(Location location) {
    method onOptionsItemSelected (line 491) | @Override
    method onProviderDisabled (line 518) | public void onProviderDisabled(String provider) {}
    method onProviderEnabled (line 523) | public void onProviderEnabled(String provider) {}
    method onRequestPermissionsResult (line 525) | @Override
    method onSensorChanged (line 585) | public void onSensorChanged(SensorEvent event) {
    method onSharedPreferenceChanged (line 681) | @Override
    method onStart (line 717) | @Override
    method onStatusChanged (line 766) | public void onStatusChanged(String provider, int status, Bundle extras...
    method onStop (line 768) | @Override
    method registerLocationProviders (line 789) | protected void registerLocationProviders() {
    method registerPhoneStateListener (line 805) | private void registerPhoneStateListener() {
    method requestLocationUpdates (line 816) | private void requestLocationUpdates() {
    method requestPermissions (line 846) | private void requestPermissions() {
    class SectionsPagerAdapter (line 869) | public class SectionsPagerAdapter extends FragmentPagerAdapter {
      method SectionsPagerAdapter (line 871) | public SectionsPagerAdapter(FragmentManager fm) {
      method getItem (line 875) | @Override
      method getCount (line 898) | @Override
      method getPageIcon (line 904) | public Drawable getPageIcon(int position) {
      method getPageTitle (line 918) | @Override

FILE: src/com/vonglasow/michael/satstat/ui/MapDownloadActivity.java
  class MapDownloadActivity (line 50) | public class MapDownloadActivity extends AppCompatActivity implements Re...
    method onCreate (line 70) | @Override
    method onDestroy (line 141) | @Override
    method onOptionsItemSelected (line 149) | @Override
    method onRemoteDirListReady (line 160) | @Override
    method onStart (line 175) | @Override
    method onSaveInstanceState (line 180) | @Override
    method onStop (line 186) | @Override

FILE: src/com/vonglasow/michael/satstat/ui/MapSectionFragment.java
  class MapSectionFragment (line 91) | public class MapSectionFragment extends Fragment {
    method MapSectionFragment (line 138) | public MapSectionFragment() {
    method applyLocationProviderStyle (line 156) | protected void applyLocationProviderStyle(Context context, String prov...
    method assignLocationProviderStyle (line 202) | protected String assignLocationProviderStyle(String provider) {
    method createLayers (line 231) | private void createLayers(boolean createOverlays) {
    method destroyLayers (line 335) | private void destroyLayers(boolean destroyOverlays) {
    method isLocationStale (line 381) | public static boolean isLocationStale(Location location) {
    method markLocationAsStale (line 389) | public static void markLocationAsStale(Location location) {
    method onCreateView (line 396) | @Override
    method onDestroyView (line 495) | @Override
    method onGpsStatusChanged (line 512) | public void onGpsStatusChanged(GpsStatus status, int satsInView, int s...
    method onLocationChanged (line 526) | public void onLocationChanged(Location location) {
    method onLocationProvidersChanged (line 578) | public void onLocationProvidersChanged(Set<String> providers) {
    method onMapSourceChanged (line 694) | void onMapSourceChanged() {
    method onPause (line 700) | @Override
    method onResume (line 708) | @Override
    method onStop (line 716) | @Override
    method updateLocationProviderStyles (line 747) | public void updateLocationProviderStyles() {
    method updateMap (line 780) | public void updateMap() {

FILE: src/com/vonglasow/michael/satstat/ui/RadioSectionFragment.java
  class RadioSectionFragment (line 77) | public class RadioSectionFragment extends Fragment {
    method RadioSectionFragment (line 189) | public RadioSectionFragment() {
    method addWifiResult (line 193) | private final void addWifiResult(ScanResult result) {
    method formatCellData (line 278) | public static String formatCellData(Context context, String format, in...
    method formatCellDbm (line 301) | public static String formatCellDbm(Context context, String format, int...
    method getChannelFromFrequency (line 316) | public static String getChannelFromFrequency(int frequency) {
    method getColorFromGeneration (line 331) | public static int getColorFromGeneration(int generation) {
    method onCreateView (line 345) | @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    method onDestroyView (line 409) | @Override
    method onNetworkTypeChanged (line 424) | protected void onNetworkTypeChanged(int networkType) {
    method onResume (line 446) | @Override
    method onStop (line 453) | @Override
    method onWifiEntryClick (line 463) | private final void onWifiEntryClick(String BSSID) {
    method refreshWifiResults (line 469) | final void refreshWifiResults() {
    method showCells (line 501) | protected void showCells() {
    method showCellCdma (line 544) | protected void showCellCdma(CellTowerCdma cellTower) {
    method showCellGsm (line 567) | protected void showCellGsm(CellTowerGsm cellTower) {
    method showCellLte (line 606) | protected void showCellLte(CellTowerLte cellTower) {
    method updateCellData (line 673) | @SuppressLint("NewApi")
    method updateNeighboringCellInfo (line 771) | protected void updateNeighboringCellInfo() {

FILE: src/com/vonglasow/michael/satstat/ui/SensorSectionFragment.java
  class SensorSectionFragment (line 40) | public class SensorSectionFragment extends Fragment {
    method SensorSectionFragment (line 107) | public SensorSectionFragment() {
    method accuracyToColor (line 114) | public static int accuracyToColor(int accuracy) {
    method getSensorDecimals (line 136) | public static byte getSensorDecimals(Sensor sensor, byte maxDecimals) {
    method onCreateView (line 146) | @Override
    method onDestroyView (line 218) | @Override
    method onSensorChanged (line 228) | public void onSensorChanged(SensorEvent event) {

FILE: src/com/vonglasow/michael/satstat/ui/SettingsActivity.java
  class SettingsActivity (line 64) | public class SettingsActivity extends AppCompatActivity implements OnPre...
    method onActivityResult (line 88) | @SuppressLint("NewApi")
    method onCreate (line 98) | @Override
    method onOptionsItemSelected (line 135) | @Override
    method onPreferenceClick (line 150) | @Override
    method onRequestPermissionsResult (line 249) | @Override
    method onResume (line 268) | @Override
    method onSharedPreferenceChanged (line 279) | @Override
    method onStart (line 320) | @Override
    method onStop (line 335) | @Override
    method setMapPath (line 341) | protected void setMapPath(String path) {
    class SettingsFragment (line 347) | public static class SettingsFragment extends PreferenceFragment {
      method onCreate (line 348) | @Override

FILE: src/com/vonglasow/michael/satstat/utils/DownloadTreeViewAdapter.java
  class DownloadTreeViewAdapter (line 67) | public class DownloadTreeViewAdapter extends AbstractTreeViewAdapter<Rem...
    method DownloadTreeViewAdapter (line 97) | public DownloadTreeViewAdapter(final Activity activity,
    method checkProgress (line 122) | private void checkProgress() {
    method registerIntentReceiver (line 172) | public void registerIntentReceiver() {
    method releaseIntentReceiver (line 198) | public void releaseIntentReceiver() {
    method getNewChildView (line 205) | @Override
    method updateView (line 212) | @Override
    method handleItemClick (line 280) | @Override
    method getItemId (line 341) | @Override
    method onRemoteDirListReady (line 346) | @Override
    method removeDownload (line 378) | private void removeDownload(long reference, boolean success) {
    method startDownload (line 413) | private void startDownload(RemoteFile rfile, File mapFile, View view) {
    method startProgressChecker (line 444) | private void startProgressChecker() {
    method stopProgressChecker (line 454) | private void stopProgressChecker() {
    method storeInstanceState (line 468) | public void storeInstanceState(Bundle savedInstanceState) {
    method run (line 476) | @Override
    method onReceive (line 494) | @Override
    class DownloadInfo (line 544) | private class DownloadInfo {
      method DownloadInfo (line 578) | private DownloadInfo(RemoteFile remoteFile, Uri uri, File targetFile...
      method DownloadInfo (line 588) | private DownloadInfo(Uri uri, File targetFile, File downloadFile, lo...

FILE: src/com/vonglasow/michael/satstat/utils/HttpDownloader.java
  class HttpDownloader (line 43) | public class HttpDownloader {
    method getContentLength (line 60) | private static long getContentLength(URLConnection connection) {
    method getFileInfo (line 79) | private static RemoteFile getFileInfo(URL context, String href) {
    method isPortEqual (line 148) | private static boolean isPortEqual(URL url1, URL url2) {
    method list (line 164) | public static RemoteFile[] list(String urlStr) {

FILE: src/com/vonglasow/michael/satstat/utils/PermissionHelper.java
  class PermissionHelper (line 40) | public class PermissionHelper {
    method requestPermissions (line 67) | public static <T extends Context & OnRequestPermissionsResultCallback>...
    class PermissionRequestActivity (line 110) | public static class PermissionRequestActivity extends AppCompatActivity {
      method onRequestPermissionsResult (line 121) | @Override
      method onStart (line 138) | @Override

FILE: src/com/vonglasow/michael/satstat/utils/RemoteDirListListener.java
  type RemoteDirListListener (line 26) | public interface RemoteDirListListener {
    method onRemoteDirListReady (line 32) | public void onRemoteDirListReady(RemoteDirListTask task, RemoteFile[] ...

FILE: src/com/vonglasow/michael/satstat/utils/RemoteDirListTask.java
  class RemoteDirListTask (line 34) | public class RemoteDirListTask extends AsyncTask<String, Void, RemoteFil...
    method RemoteDirListTask (line 46) | public RemoteDirListTask(RemoteDirListListener listener, RemoteFile pa...
    method doInBackground (line 53) | @Override
    method onPostExecute (line 82) | protected void onPostExecute(RemoteFile[] result) {

FILE: src/com/vonglasow/michael/satstat/utils/RemoteFile.java
  class RemoteFile (line 31) | public class RemoteFile implements Serializable {
    method RemoteFile (line 66) | public RemoteFile(String baseUrl, boolean isDirectory, String name, lo...
    method getFriendlySize (line 75) | public String getFriendlySize() {
    method getUri (line 94) | public Uri getUri() {
    method getUriString (line 103) | public String getUriString() {

FILE: src/com/vonglasow/michael/satstat/utils/RemoteFileComparator.java
  class RemoteFileComparator (line 13) | public class RemoteFileComparator implements Comparator<RemoteFile> {
    method compare (line 15) | @Override

FILE: src/com/vonglasow/michael/satstat/utils/WifiCapabilities.java
  class WifiCapabilities (line 30) | public abstract class WifiCapabilities {
    method getScanResultSecurity (line 73) | public static String getScanResultSecurity(ScanResult scanResult) {
    method isAdhoc (line 88) | public static boolean isAdhoc(ScanResult scanResult) {
    method isEnterprise (line 95) | public static boolean isEnterprise(ScanResult scanResult) {
    method getNetworkConnectivity (line 122) | public static int getNetworkConnectivity() {

FILE: src/com/vonglasow/michael/satstat/utils/WifiScanResultComparator.java
  class WifiScanResultComparator (line 15) | public class WifiScanResultComparator implements Comparator<ScanResult> {
    method compare (line 49) | @Override
    method setCriterion (line 83) | public void setCriterion(int newCriterion) {

FILE: src/com/vonglasow/michael/satstat/widgets/GpsSnrView.java
  class GpsSnrView (line 38) | public class GpsSnrView extends View {
    method GpsSnrView (line 97) | public GpsSnrView(Context context) {
    method GpsSnrView (line 106) | public GpsSnrView(Context context, AttributeSet attrs) {
    method GpsSnrView (line 116) | public GpsSnrView(Context context, AttributeSet attrs, int defStyle) {
    method doInit (line 121) | private void doInit(Context context) {
    method drawGrid (line 207) | private void drawGrid(Canvas canvas) {
    method drawLabel (line 313) | private void drawLabel(Canvas canvas, String label, int startBar, int ...
    method drawSat (line 333) | private void drawSat(Canvas canvas, int nmeaID, float snr, boolean use...
    method getGridPos (line 358) | private int getGridPos(int nmeaID) {
    method getNumBars (line 438) | private int getNumBars() {
    method initializeGrid (line 458) | protected void initializeGrid() {
    method onDraw (line 516) | @Override
    method onMeasure (line 529) | @Override
    method showSats (line 542) | public void showSats(Iterable<GpsSatellite> sats) {

FILE: src/com/vonglasow/michael/satstat/widgets/GpsStatusView.java
  class GpsStatusView (line 34) | public class GpsStatusView extends SquareView {
    method GpsStatusView (line 62) | public GpsStatusView(Context context) {
    method GpsStatusView (line 67) | public GpsStatusView(Context context, AttributeSet attrs) {
    method GpsStatusView (line 72) | public GpsStatusView(Context context, AttributeSet attrs, int defStyle) {
    method doInit (line 77) | private void doInit(Context context) {
    method drawSat (line 113) | private void drawSat(Canvas canvas, int prn, float azimuth, float elev...
    method onDraw (line 122) | @Override
    method onSizeChanged (line 162) | @Override
    method refreshGeometries (line 169) | public void refreshGeometries() {
    method setYaw (line 204) | public void setYaw(float yaw) {
    method showSats (line 211) | public void showSats(Iterable<GpsSatellite> sats) {

FILE: src/com/vonglasow/michael/satstat/widgets/LocProviderPreference.java
  class LocProviderPreference (line 13) | public class LocProviderPreference extends MultiSelectListPreference {
    method LocProviderPreference (line 17) | public LocProviderPreference(Context context) {
    method LocProviderPreference (line 24) | public LocProviderPreference(Context context, AttributeSet attrs) {
    method updateProviders (line 34) | public void updateProviders() {

FILE: src/com/vonglasow/michael/satstat/widgets/MapViewPager.java
  class MapViewPager (line 10) | public class MapViewPager extends ViewPager {
    method MapViewPager (line 12) | public MapViewPager(Context context) {
    method MapViewPager (line 16) | public MapViewPager(Context context, AttributeSet attrs) {
    method canScroll (line 30) | @Override

FILE: src/com/vonglasow/michael/satstat/widgets/NetworkTypePreference.java
  class NetworkTypePreference (line 11) | public class NetworkTypePreference extends MultiSelectListPreference {
    method NetworkTypePreference (line 15) | public NetworkTypePreference(Context context) {
    method NetworkTypePreference (line 21) | public NetworkTypePreference(Context context, AttributeSet attrs) {
    method updateNetworks (line 30) | public void updateNetworks() {

FILE: src/com/vonglasow/michael/satstat/widgets/SquareView.java
  class SquareView (line 26) | public class SquareView extends View {
    method SquareView (line 29) | public SquareView(Context context) {
    method SquareView (line 33) | public SquareView(Context context, AttributeSet attrs) {
    method SquareView (line 37) | public SquareView(Context context, AttributeSet attrs, int defStyle) {
    method onMeasure (line 41) | @Override
    method setRelativeSize (line 47) | public void setRelativeSize(float size) {

FILE: src/pl/polidea/treeview/AbstractTreeViewAdapter.java
  class AbstractTreeViewAdapter (line 28) | public abstract class AbstractTreeViewAdapter<T> extends BaseAdapter imp...
    method getActivity (line 46) | public Activity getActivity() {
    method getManager (line 50) | protected TreeStateManager<T> getManager() {
    method expandCollapse (line 54) | protected void expandCollapse(final T id) {
    method calculateIndentWidth (line 67) | private void calculateIndentWidth() {
    method AbstractTreeViewAdapter (line 78) | public AbstractTreeViewAdapter(final Activity activity,
    method registerDataSetObserver (line 91) | @Override
    method unregisterDataSetObserver (line 96) | @Override
    method getCount (line 101) | @Override
    method getItem (line 106) | @Override
    method getTreeId (line 111) | public T getTreeId(final int position) {
    method getTreeNodeInfo (line 115) | public TreeNodeInfo<T> getTreeNodeInfo(final int position) {
    method hasStableIds (line 119) | @Override
    method getItemViewType (line 124) | @Override
    method getViewTypeCount (line 129) | @Override
    method isEmpty (line 134) | @Override
    method areAllItemsEnabled (line 139) | @Override
    method isEnabled (line 144) | @Override
    method getTreeListItemWrapperId (line 149) | protected int getTreeListItemWrapperId() {
    method getView (line 153) | @Override
    method getNewChildView (line 183) | public abstract View getNewChildView(TreeNodeInfo<T> treeNodeInfo);
    method updateView (line 197) | public abstract View updateView(View view, TreeNodeInfo<T> treeNodeInfo);
    method getBackgroundDrawable (line 207) | public Drawable getBackgroundDrawable(final TreeNodeInfo<T> treeNodeIn...
    method getDrawableOrDefaultBackground (line 211) | private Drawable getDrawableOrDefaultBackground(final Drawable r) {
    method populateTreeItem (line 220) | public final LinearLayout populateTreeItem(final LinearLayout layout,
    method calculateIndentation (line 251) | protected int calculateIndentation(final TreeNodeInfo<T> nodeInfo) {
    method getDrawable (line 255) | protected Drawable getDrawable(final TreeNodeInfo<T> nodeInfo) {
    method setIndicatorGravity (line 266) | public void setIndicatorGravity(final int indicatorGravity) {
    method setCollapsedDrawable (line 270) | public void setCollapsedDrawable(final Drawable collapsedDrawable) {
    method setExpandedDrawable (line 275) | public void setExpandedDrawable(final Drawable expandedDrawable) {
    method setIndentWidth (line 280) | public void setIndentWidth(final int indentWidth) {
    method setRowBackgroundDrawable (line 285) | public void setRowBackgroundDrawable(final Drawable rowBackgroundDrawa...
    method setIndicatorBackgroundDrawable (line 289) | public void setIndicatorBackgroundDrawable(
    method setCollapsible (line 294) | public void setCollapsible(final boolean collapsible) {
    method refresh (line 298) | public void refresh() {
    method getIndentWidth (line 302) | private int getIndentWidth() {
    method handleItemClick (line 306) | @SuppressWarnings("unchecked")

FILE: src/pl/polidea/treeview/DownloadTreeStateManager.java
  class DownloadTreeStateManager (line 31) | public class DownloadTreeStateManager extends
    method getNodeInfo (line 35) | @Override

FILE: src/pl/polidea/treeview/InMemoryTreeNode.java
  class InMemoryTreeNode (line 13) | class InMemoryTreeNode<T> implements Serializable {
    method InMemoryTreeNode (line 22) | public InMemoryTreeNode(final T id, final T parent, final int level,
    method indexOf (line 31) | public int indexOf(final T id) {
    method getChildIdList (line 41) | public synchronized List<T> getChildIdList() {
    method isVisible (line 51) | public boolean isVisible() {
    method setVisible (line 55) | public void setVisible(final boolean visible) {
    method getChildrenListSize (line 59) | public int getChildrenListSize() {
    method add (line 63) | public synchronized InMemoryTreeNode<T> add(final int index, final T c...
    method getChildren (line 79) | public List<InMemoryTreeNode<T>> getChildren() {
    method clearChildren (line 83) | public synchronized void clearChildren() {
    method removeChild (line 88) | public synchronized void removeChild(final T child) {
    method toString (line 96) | @Override
    method getId (line 104) | T getId() {
    method getParent (line 108) | T getParent() {
    method getLevel (line 112) | int getLevel() {

FILE: src/pl/polidea/treeview/InMemoryTreeStateManager.java
  class InMemoryTreeStateManager (line 21) | public class InMemoryTreeStateManager<T> implements TreeStateManager<T> {
    method internalDataSetChanged (line 33) | private synchronized void internalDataSetChanged() {
    method setVisibleByDefault (line 48) | public void setVisibleByDefault(final boolean visibleByDefault) {
    method getNodeFromTreeOrThrow (line 52) | protected InMemoryTreeNode<T> getNodeFromTreeOrThrow(final T id) {
    method getNodeFromTreeOrThrowAllowRoot (line 63) | private InMemoryTreeNode<T> getNodeFromTreeOrThrowAllowRoot(final T id) {
    method expectNodeNotInTreeYet (line 70) | private void expectNodeNotInTreeYet(final T id) {
    method getNodeInfo (line 77) | @Override
    method getChildren (line 89) | @Override
    method getParent (line 95) | @Override
    method getChildrenVisibility (line 101) | private boolean getChildrenVisibility(final InMemoryTreeNode<T> node) {
    method addBeforeChild (line 112) | @Override
    method addAfterChild (line 133) | @Override
    method removeNodeRecursively (line 155) | @Override
    method removeNodeRecursively (line 167) | private boolean removeNodeRecursively(final InMemoryTreeNode<T> node) {
    method setChildrenVisibility (line 184) | private void setChildrenVisibility(final InMemoryTreeNode<T> node,
    method expandDirectChildren (line 194) | @Override
    method expandEverythingBelow (line 202) | @Override
    method collapseChildren (line 210) | @Override
    method getNextSibling (line 223) | @Override
    method getPreviousSibling (line 239) | @Override
    method isInTree (line 253) | @Override
    method getVisibleCount (line 258) | @Override
    method getVisibleList (line 263) | @Override
    method getNextVisible (line 284) | public synchronized T getNextVisible(final T id) {
    method registerDataSetObserver (line 313) | @Override
    method unregisterDataSetObserver (line 321) | @Override
    method getLevel (line 328) | @Override
    method getHierarchyDescription (line 333) | @Override
    method appendToSb (line 348) | private void appendToSb(final StringBuilder sb, final T id) {
    method toString (line 365) | @Override
    method clear (line 372) | @Override
    method refresh (line 379) | @Override

FILE: src/pl/polidea/treeview/NodeAlreadyInTreeException.java
  class NodeAlreadyInTreeException (line 7) | public class NodeAlreadyInTreeException extends RuntimeException {
    method NodeAlreadyInTreeException (line 10) | public NodeAlreadyInTreeException(final String id, final String oldNod...

FILE: src/pl/polidea/treeview/NodeNotInTreeException.java
  class NodeNotInTreeException (line 7) | public class NodeNotInTreeException extends RuntimeException {
    method NodeNotInTreeException (line 11) | public NodeNotInTreeException(final String id) {

FILE: src/pl/polidea/treeview/TreeBuilder.java
  class TreeBuilder (line 16) | public class TreeBuilder<T> {
    method TreeBuilder (line 24) | public TreeBuilder(final TreeStateManager<T> manager) {
    method clear (line 28) | public void clear() {
    method addRelation (line 46) | public synchronized void addRelation(final T parent, final T child) {
    method sequentiallyAddNextNode (line 66) | public synchronized void sequentiallyAddNextNode(final T id, final int...
    method findParentAtLevel (line 89) | private T findParentAtLevel(final T node, final int levelToFind) {
    method addNodeToParentOneLevelDown (line 111) | private void addNodeToParentOneLevelDown(final T parent, final T id,
    method setLastAdded (line 127) | private void setLastAdded(final T id, final int level) {

FILE: src/pl/polidea/treeview/TreeConfigurationException.java
  class TreeConfigurationException (line 7) | public class TreeConfigurationException extends RuntimeException {
    method TreeConfigurationException (line 11) | public TreeConfigurationException(final String detailMessage) {

FILE: src/pl/polidea/treeview/TreeNodeInfo.java
  class TreeNodeInfo (line 9) | public class TreeNodeInfo<T> {
    method TreeNodeInfo (line 31) | public TreeNodeInfo(final T id, final int level,
    method getId (line 42) | public T getId() {
    method isWithChildren (line 46) | public boolean isWithChildren() {
    method isVisible (line 50) | public boolean isVisible() {
    method isExpanded (line 54) | public boolean isExpanded() {
    method getLevel (line 58) | public int getLevel() {
    method toString (line 62) | @Override

FILE: src/pl/polidea/treeview/TreeStateManager.java
  type TreeStateManager (line 15) | public interface TreeStateManager<T> extends Serializable {
    method getHierarchyDescription (line 27) | Integer[] getHierarchyDescription(T id);
    method getLevel (line 36) | int getLevel(T id);
    method getNodeInfo (line 45) | TreeNodeInfo<T> getNodeInfo(T id);
    method getChildren (line 54) | List<T> getChildren(T id);
    method getParent (line 63) | T getParent(T id);
    method addBeforeChild (line 75) | void addBeforeChild(T parent, T newChild, T beforeChild);
    method addAfterChild (line 87) | void addAfterChild(T parent, T newChild, T afterChild);
    method removeNodeRecursively (line 96) | void removeNodeRecursively(T id);
    method expandDirectChildren (line 105) | void expandDirectChildren(T id);
    method expandEverythingBelow (line 115) | void expandEverythingBelow(T id);
    method collapseChildren (line 124) | void collapseChildren(T id);
    method getNextSibling (line 133) | T getNextSibling(T id);
    method getPreviousSibling (line 142) | T getPreviousSibling(T id);
    method isInTree (line 151) | boolean isInTree(T id);
    method getVisibleCount (line 158) | int getVisibleCount();
    method getVisibleList (line 165) | List<T> getVisibleList();
    method registerDataSetObserver (line 173) | void registerDataSetObserver(final DataSetObserver observer);
    method unregisterDataSetObserver (line 181) | void unregisterDataSetObserver(final DataSetObserver observer);
    method clear (line 187) | void clear();
    method refresh (line 192) | void refresh();

FILE: src/pl/polidea/treeview/TreeViewList.java
  class TreeViewList (line 29) | public class TreeViewList extends ListView {
    method TreeViewList (line 45) | public TreeViewList(final Context context, final AttributeSet attrs) {
    method TreeViewList (line 49) | public TreeViewList(final Context context) {
    method TreeViewList (line 53) | public TreeViewList(final Context context, final AttributeSet attrs,
    method parseAttributes (line 59) | private void parseAttributes(final Context context, final AttributeSet...
    method setAdapter (line 86) | @Override
    method syncAdapter (line 97) | private void syncAdapter() {
    method setExpandedDrawable (line 119) | public void setExpandedDrawable(final Drawable expandedDrawable) {
    method setCollapsedDrawable (line 125) | public void setCollapsedDrawable(final Drawable collapsedDrawable) {
    method setRowBackgroundDrawable (line 131) | public void setRowBackgroundDrawable(final Drawable rowBackgroundDrawa...
    method setIndicatorBackgroundDrawable (line 137) | public void setIndicatorBackgroundDrawable(
    method setIndentWidth (line 144) | public void setIndentWidth(final int indentWidth) {
    method setIndicatorGravity (line 150) | public void setIndicatorGravity(final int indicatorGravity) {
    method setCollapsible (line 156) | public void setCollapsible(final boolean collapsible) {
    method setHandleTrackballPress (line 162) | public void setHandleTrackballPress(final boolean handleTrackballPress) {
    method getExpandedDrawable (line 168) | public Drawable getExpandedDrawable() {
    method getCollapsedDrawable (line 172) | public Drawable getCollapsedDrawable() {
    method getRowBackgroundDrawable (line 176) | public Drawable getRowBackgroundDrawable() {
    method getIndicatorBackgroundDrawable (line 180) | public Drawable getIndicatorBackgroundDrawable() {
    method getIndentWidth (line 184) | public int getIndentWidth() {
    method getIndicatorGravity (line 188) | public int getIndicatorGravity() {
    method isCollapsible (line 192) | public boolean isCollapsible() {
    method isHandleTrackballPress (line 196) | public boolean isHandleTrackballPress() {

FILE: src/uk/me/jstott/jcoord/CoordinateSystem.java
  class CoordinateSystem (line 28) | public abstract class CoordinateSystem {
    method CoordinateSystem (line 32) | public CoordinateSystem(Datum datum) {
    method toLatLng (line 44) | public abstract LatLng toLatLng();
    method setDatum (line 53) | public void setDatum(Datum datum) {
    method getDatum (line 64) | public Datum getDatum() {

FILE: src/uk/me/jstott/jcoord/ECEFRef.java
  class ECEFRef (line 35) | public class ECEFRef extends CoordinateSystem {
    method ECEFRef (line 64) | public ECEFRef(double x, double y, double z) {
    method ECEFRef (line 85) | public ECEFRef(double x, double y, double z, Datum datum) {
    method ECEFRef (line 103) | public ECEFRef(LatLng ll) {
    method toLatLng (line 130) | public LatLng toLatLng() {
    method getX (line 160) | public double getX() {
    method getY (line 171) | public double getY() {
    method getZ (line 182) | public double getZ() {
    method setX (line 194) | public void setX(double x) {
    method setY (line 206) | public void setY(double y) {
    method setZ (line 218) | public void setZ(double z) {
    method toString (line 229) | public String toString() {

FILE: src/uk/me/jstott/jcoord/IrishRef.java
  class IrishRef (line 40) | public class IrishRef extends CoordinateSystem {
    method IrishRef (line 78) | public IrishRef(double easting, double northing) throws IllegalArgumen...
    method IrishRef (line 101) | public IrishRef(String ref) throws IllegalArgumentException {
    method IrishRef (line 127) | public IrishRef(LatLng ll) {
    method toString (line 190) | public String toString() {
    method toSixFigureString (line 203) | public String toSixFigureString() {
    method toLatLng (line 239) | public LatLng toLatLng() {
    method getEasting (line 305) | public double getEasting() {
    method getNorthing (line 319) | public double getNorthing() {
    method setEasting (line 336) | public void setEasting(double easting) throws IllegalArgumentException {
    method setNorthing (line 359) | public void setNorthing(double northing) throws IllegalArgumentExcepti...

FILE: src/uk/me/jstott/jcoord/LatLng.java
  class LatLng (line 30) | public class LatLng {
    method LatLng (line 87) | public LatLng(double latitude, double longitude) {
    method LatLng (line 108) | public LatLng(double latitude, double longitude, double height) {
    method LatLng (line 145) | public LatLng(int latitudeDegrees, int latitudeMinutes,
    method LatLng (line 189) | public LatLng(int latitudeDegrees, int latitudeMinutes,
    method LatLng (line 235) | public LatLng(int latitudeDegrees, int latitudeMinutes,
    method LatLng (line 281) | public LatLng(double latitude, double longitude, double height, Datum ...
    method toString (line 307) | public String toString() {
    method toDMSString (line 323) | public String toDMSString() {
    method formatLatitude (line 336) | private String formatLatitude() {
    method formatLongitude (line 349) | private String formatLongitude() {
    method toOSRef (line 363) | public OSRef toOSRef() {
    method toUTMRef (line 425) | public UTMRef toUTMRef() throws NotDefinedOnUTMGridException {
    method toMGRSRef (line 518) | public MGRSRef toMGRSRef() {
    method toWGS84 (line 530) | public void toWGS84() {
    method toDatum (line 580) | public void toDatum(Datum d) {
    method toOSGB36 (line 642) | public void toOSGB36() {
    method distance (line 696) | public double distance(LatLng ll) {
    method distanceMiles (line 721) | public double distanceMiles(LatLng ll) {
    method getLat (line 733) | public double getLat() {
    method getLatitude (line 744) | public double getLatitude() {
    method getLatitudeDegrees (line 755) | public int getLatitudeDegrees() {
    method getLatitudeMinutes (line 772) | public int getLatitudeMinutes() {
    method getLatitudeSeconds (line 790) | public double getLatitudeSeconds() {
    method getLng (line 810) | public double getLng() {
    method getLongitude (line 821) | public double getLongitude() {
    method getLongitudeDegrees (line 832) | public int getLongitudeDegrees() {
    method getLongitudeMinutes (line 849) | public int getLongitudeMinutes() {
    method getLongitudeSeconds (line 867) | public double getLongitudeSeconds() {
    method getHeight (line 886) | public double getHeight() {
    method getDatum (line 897) | public Datum getDatum() {

FILE: src/uk/me/jstott/jcoord/MGRSRef.java
  class MGRSRef (line 129) | public class MGRSRef extends CoordinateSystem {
    method MGRSRef (line 214) | public MGRSRef(UTMRef utm) {
    method MGRSRef (line 233) | public MGRSRef(UTMRef utm, boolean isBessel) {
    method MGRSRef (line 304) | public MGRSRef(int utmZoneNumber, char utmZoneChar, char eastingID,
    method MGRSRef (line 344) | public MGRSRef(int utmZoneNumber, char utmZoneChar, char eastingID,
    method MGRSRef (line 404) | public MGRSRef(String ref) throws IllegalArgumentException {
    method MGRSRef (line 423) | public MGRSRef(String ref, boolean isBessel) throws IllegalArgumentExc...
    method toUTMRef (line 459) | public UTMRef toUTMRef() {
    method toLatLng (line 538) | public LatLng toLatLng() {
    method toString (line 551) | public String toString() {
    method toString (line 568) | public String toString(int precision) {
    method getEasting (line 628) | public int getEasting() {
    method getEastingID (line 639) | public char getEastingID() {
    method isBessel (line 650) | public boolean isBessel() {
    method getNorthing (line 661) | public int getNorthing() {
    method getNorthingID (line 672) | public char getNorthingID() {
    method getPrecision (line 683) | public int getPrecision() {
    method getUtmZoneChar (line 694) | public char getUtmZoneChar() {
    method getUtmZoneNumber (line 705) | public int getUtmZoneNumber() {

FILE: src/uk/me/jstott/jcoord/NotDefinedOnUTMGridException.java
  class NotDefinedOnUTMGridException (line 20) | public class NotDefinedOnUTMGridException extends RuntimeException {
    method NotDefinedOnUTMGridException (line 31) | public NotDefinedOnUTMGridException() {
    method NotDefinedOnUTMGridException (line 41) | public NotDefinedOnUTMGridException(String message) {

FILE: src/uk/me/jstott/jcoord/OSRef.java
  class OSRef (line 225) | public class OSRef extends CoordinateSystem {
    method OSRef (line 253) | public OSRef(double easting, double northing) throws IllegalArgumentEx...
    method OSRef (line 276) | public OSRef(String ref) throws IllegalArgumentException {
    method OSRef (line 316) | public OSRef(LatLng ll) {
    method toString (line 380) | public String toString() {
    method toSixFigureString (line 393) | public String toSixFigureString() {
    method toLatLng (line 445) | public LatLng toLatLng() {
    method getEasting (line 512) | public double getEasting() {
    method getNorthing (line 526) | public double getNorthing() {
    method setEasting (line 542) | public void setEasting(double easting) throws IllegalArgumentException {
    method setNorthing (line 564) | public void setNorthing(double northing) throws IllegalArgumentExcepti...

FILE: src/uk/me/jstott/jcoord/RefEll.java
  class RefEll (line 28) | public class RefEll {
    method RefEll (line 211) | public RefEll(double maj, double min) {
    method getMaj (line 224) | public double getMaj() {
    method getMin (line 235) | public double getMin() {
    method getEcc (line 246) | public double getEcc() {

FILE: src/uk/me/jstott/jcoord/Test.java
  class Test (line 27) | public class Test {
    method main (line 36) | public static void main(String[] args) {
    method mgrsTests (line 165) | public static void mgrsTests() {

FILE: src/uk/me/jstott/jcoord/UTMRef.java
  class UTMRef (line 28) | public class UTMRef extends CoordinateSystem {
    method UTMRef (line 76) | public UTMRef(double easting, double northing, char latZone, int lngZone)
    method UTMRef (line 105) | public UTMRef(int lngZone, char latZone, double easting, double northing)
    method toLatLng (line 143) | public LatLng toLatLng() {
    method getUTMLatitudeZoneLetter (line 210) | public static char getUTMLatitudeZoneLetter(double latitude) {
    method toString (line 262) | public String toString() {
    method getEasting (line 274) | public double getEasting() {
    method getNorthing (line 285) | public double getNorthing() {
    method getLatZone (line 296) | public char getLatZone() {
    method getLngZone (line 307) | public int getLngZone() {

FILE: src/uk/me/jstott/jcoord/Util.java
  class Util (line 26) | class Util {
    method sinSquared (line 36) | protected static double sinSquared(double x) {
    method sinCubed (line 49) | protected static double sinCubed(double x) {
    method cosSquared (line 62) | protected static double cosSquared(double x) {
    method cosCubed (line 75) | protected static double cosCubed(double x) {
    method tanSquared (line 88) | protected static double tanSquared(double x) {
    method sec (line 101) | protected static double sec(double x) {

FILE: src/uk/me/jstott/jcoord/datum/Datum.java
  class Datum (line 31) | public abstract class Datum {
    method getName (line 93) | public String getName() {
    method getReferenceEllipsoid (line 104) | public Ellipsoid getReferenceEllipsoid() {
    method getDs (line 115) | public double getDs() {
    method getDx (line 126) | public double getDx() {
    method getDy (line 137) | public double getDy() {
    method getDz (line 148) | public double getDz() {
    method getRx (line 159) | public double getRx() {
    method getRy (line 170) | public double getRy() {
    method getRz (line 181) | public double getRz() {
    method toString (line 192) | public String toString() {

FILE: src/uk/me/jstott/jcoord/datum/ETRF89Datum.java
  class ETRF89Datum (line 27) | public class ETRF89Datum extends Datum {
    method ETRF89Datum (line 40) | private ETRF89Datum() {
    method getInstance (line 59) | public static ETRF89Datum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/Ireland1965Datum.java
  class Ireland1965Datum (line 27) | public class Ireland1965Datum extends Datum {
    method Ireland1965Datum (line 40) | private Ireland1965Datum() {
    method getInstance (line 59) | public static Ireland1965Datum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/OSGB36Datum.java
  class OSGB36Datum (line 25) | public class OSGB36Datum extends Datum {
    method OSGB36Datum (line 38) | private OSGB36Datum() {
    method getInstance (line 57) | public static OSGB36Datum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/WGS84Datum.java
  class WGS84Datum (line 26) | public class WGS84Datum extends Datum {
    method WGS84Datum (line 39) | public WGS84Datum() {
    method getInstance (line 58) | public static WGS84Datum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27AlaskaDatum.java
  class NAD27AlaskaDatum (line 29) | public class NAD27AlaskaDatum extends Datum {
    method NAD27AlaskaDatum (line 42) | private NAD27AlaskaDatum() {
    method getInstance (line 61) | public static NAD27AlaskaDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27AlbertaBritishColumbiaDatum.java
  class NAD27AlbertaBritishColumbiaDatum (line 29) | public class NAD27AlbertaBritishColumbiaDatum extends Datum {
    method NAD27AlbertaBritishColumbiaDatum (line 42) | private NAD27AlbertaBritishColumbiaDatum() {
    method getInstance (line 61) | public static NAD27AlbertaBritishColumbiaDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27AleutianEastDatum.java
  class NAD27AleutianEastDatum (line 29) | public class NAD27AleutianEastDatum extends Datum {
    method NAD27AleutianEastDatum (line 42) | private NAD27AleutianEastDatum() {
    method getInstance (line 61) | public static NAD27AleutianEastDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27AleutianWestDatum.java
  class NAD27AleutianWestDatum (line 29) | public class NAD27AleutianWestDatum extends Datum {
    method NAD27AleutianWestDatum (line 42) | private NAD27AleutianWestDatum() {
    method getInstance (line 61) | public static NAD27AleutianWestDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27BahamasDatum.java
  class NAD27BahamasDatum (line 29) | public class NAD27BahamasDatum extends Datum {
    method NAD27BahamasDatum (line 42) | private NAD27BahamasDatum() {
    method getInstance (line 61) | public static NAD27BahamasDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27CanadaDatum.java
  class NAD27CanadaDatum (line 29) | public class NAD27CanadaDatum extends Datum {
    method NAD27CanadaDatum (line 42) | private NAD27CanadaDatum() {
    method getInstance (line 61) | public static NAD27CanadaDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27CanadaEastDatum.java
  class NAD27CanadaEastDatum (line 29) | public class NAD27CanadaEastDatum extends Datum {
    method NAD27CanadaEastDatum (line 42) | private NAD27CanadaEastDatum() {
    method getInstance (line 61) | public static NAD27CanadaEastDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27CanadaManitobaOntarioDatum.java
  class NAD27CanadaManitobaOntarioDatum (line 29) | public class NAD27CanadaManitobaOntarioDatum extends Datum {
    method NAD27CanadaManitobaOntarioDatum (line 42) | private NAD27CanadaManitobaOntarioDatum() {
    method getInstance (line 61) | public static NAD27CanadaManitobaOntarioDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27CanadaNWTerritoryDatum.java
  class NAD27CanadaNWTerritoryDatum (line 29) | public class NAD27CanadaNWTerritoryDatum extends Datum {
    method NAD27CanadaNWTerritoryDatum (line 42) | private NAD27CanadaNWTerritoryDatum() {
    method getInstance (line 61) | public static NAD27CanadaNWTerritoryDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27CanadaYukonDatum.java
  class NAD27CanadaYukonDatum (line 29) | public class NAD27CanadaYukonDatum extends Datum {
    method NAD27CanadaYukonDatum (line 42) | private NAD27CanadaYukonDatum() {
    method getInstance (line 61) | public static NAD27CanadaYukonDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27CanalZoneDatum.java
  class NAD27CanalZoneDatum (line 29) | public class NAD27CanalZoneDatum extends Datum {
    method NAD27CanalZoneDatum (line 42) | private NAD27CanalZoneDatum() {
    method getInstance (line 61) | public static NAD27CanalZoneDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27CaribbeanDatum.java
  class NAD27CaribbeanDatum (line 29) | public class NAD27CaribbeanDatum extends Datum {
    method NAD27CaribbeanDatum (line 42) | private NAD27CaribbeanDatum() {
    method getInstance (line 61) | public static NAD27CaribbeanDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27CentralAmericaDatum.java
  class NAD27CentralAmericaDatum (line 29) | public class NAD27CentralAmericaDatum extends Datum {
    method NAD27CentralAmericaDatum (line 42) | private NAD27CentralAmericaDatum() {
    method getInstance (line 61) | public static NAD27CentralAmericaDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27ContiguousUSDatum.java
  class NAD27ContiguousUSDatum (line 29) | public class NAD27ContiguousUSDatum extends Datum {
    method NAD27ContiguousUSDatum (line 42) | private NAD27ContiguousUSDatum() {
    method getInstance (line 61) | public static NAD27ContiguousUSDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27CubaDatum.java
  class NAD27CubaDatum (line 29) | public class NAD27CubaDatum extends Datum {
    method NAD27CubaDatum (line 42) | private NAD27CubaDatum() {
    method getInstance (line 61) | public static NAD27CubaDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27EasternUSDatum.java
  class NAD27EasternUSDatum (line 29) | public class NAD27EasternUSDatum extends Datum {
    method NAD27EasternUSDatum (line 42) | private NAD27EasternUSDatum() {
    method getInstance (line 61) | public static NAD27EasternUSDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27GreenlandDatum.java
  class NAD27GreenlandDatum (line 29) | public class NAD27GreenlandDatum extends Datum {
    method NAD27GreenlandDatum (line 42) | private NAD27GreenlandDatum() {
    method getInstance (line 61) | public static NAD27GreenlandDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27MexicoDatum.java
  class NAD27MexicoDatum (line 29) | public class NAD27MexicoDatum extends Datum {
    method NAD27MexicoDatum (line 42) | private NAD27MexicoDatum() {
    method getInstance (line 61) | public static NAD27MexicoDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27SanSalvadorDatum.java
  class NAD27SanSalvadorDatum (line 29) | public class NAD27SanSalvadorDatum extends Datum {
    method NAD27SanSalvadorDatum (line 42) | private NAD27SanSalvadorDatum() {
    method getInstance (line 61) | public static NAD27SanSalvadorDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/datum/nad27/NAD27WesternUSDatum.java
  class NAD27WesternUSDatum (line 29) | public class NAD27WesternUSDatum extends Datum {
    method NAD27WesternUSDatum (line 42) | private NAD27WesternUSDatum() {
    method getInstance (line 61) | public static NAD27WesternUSDatum getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/Airy1830Ellipsoid.java
  class Airy1830Ellipsoid (line 26) | public class Airy1830Ellipsoid extends Ellipsoid {
    method Airy1830Ellipsoid (line 39) | private Airy1830Ellipsoid() {
    method getInstance (line 50) | public static Airy1830Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/AustralianNational1966Ellipsoid.java
  class AustralianNational1966Ellipsoid (line 26) | public class AustralianNational1966Ellipsoid extends Ellipsoid {
    method AustralianNational1966Ellipsoid (line 39) | private AustralianNational1966Ellipsoid() {
    method getInstance (line 50) | public static AustralianNational1966Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/Bessel1841Ellipsoid.java
  class Bessel1841Ellipsoid (line 26) | public class Bessel1841Ellipsoid extends Ellipsoid {
    method Bessel1841Ellipsoid (line 39) | private Bessel1841Ellipsoid() {
    method getInstance (line 50) | public static Bessel1841Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/Clarke1866Ellipsoid.java
  class Clarke1866Ellipsoid (line 26) | public class Clarke1866Ellipsoid extends Ellipsoid {
    method Clarke1866Ellipsoid (line 39) | private Clarke1866Ellipsoid() {
    method getInstance (line 50) | public static Clarke1866Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/Clarke1880Ellipsoid.java
  class Clarke1880Ellipsoid (line 26) | public class Clarke1880Ellipsoid extends Ellipsoid {
    method Clarke1880Ellipsoid (line 39) | private Clarke1880Ellipsoid() {
    method getInstance (line 50) | public static Clarke1880Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/Ellipsoid.java
  class Ellipsoid (line 26) | public abstract class Ellipsoid {
    method Ellipsoid (line 58) | public Ellipsoid(double semiMajorAxis, double semiMinorAxis) {
    method Ellipsoid (line 87) | public Ellipsoid(double semiMajorAxis, double semiMinorAxis,
    method toString (line 124) | public String toString() {
    method getEccentricitySquared (line 136) | public double getEccentricitySquared() {
    method getFlattening (line 147) | public double getFlattening() {
    method getSemiMajorAxis (line 158) | public double getSemiMajorAxis() {
    method getSemiMinorAxis (line 169) | public double getSemiMinorAxis() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/EverestEllipsoid.java
  class EverestEllipsoid (line 26) | public class EverestEllipsoid extends Ellipsoid {
    method EverestEllipsoid (line 39) | private EverestEllipsoid() {
    method getInstance (line 50) | public static EverestEllipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/Fischer1960Ellipsoid.java
  class Fischer1960Ellipsoid (line 26) | public class Fischer1960Ellipsoid extends Ellipsoid {
    method Fischer1960Ellipsoid (line 39) | private Fischer1960Ellipsoid() {
    method getInstance (line 50) | public static Fischer1960Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/Fischer1968Ellipsoid.java
  class Fischer1968Ellipsoid (line 26) | public class Fischer1968Ellipsoid extends Ellipsoid {
    method Fischer1968Ellipsoid (line 39) | private Fischer1968Ellipsoid() {
    method getInstance (line 50) | public static Fischer1968Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/GRS67Ellipsoid.java
  class GRS67Ellipsoid (line 26) | public class GRS67Ellipsoid extends Ellipsoid {
    method GRS67Ellipsoid (line 39) | private GRS67Ellipsoid() {
    method getInstance (line 50) | public static GRS67Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/GRS75Ellipsoid.java
  class GRS75Ellipsoid (line 26) | public class GRS75Ellipsoid extends Ellipsoid {
    method GRS75Ellipsoid (line 39) | private GRS75Ellipsoid() {
    method getInstance (line 50) | public static GRS75Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/GRS80Ellipsoid.java
  class GRS80Ellipsoid (line 26) | public class GRS80Ellipsoid extends Ellipsoid {
    method GRS80Ellipsoid (line 39) | private GRS80Ellipsoid() {
    method getInstance (line 50) | public static GRS80Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/Hayford1910Ellipsoid.java
  class Hayford1910Ellipsoid (line 26) | public class Hayford1910Ellipsoid extends Ellipsoid {
    method Hayford1910Ellipsoid (line 39) | private Hayford1910Ellipsoid() {
    method getInstance (line 50) | public static Hayford1910Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/Helmert1906Ellipsoid.java
  class Helmert1906Ellipsoid (line 26) | public class Helmert1906Ellipsoid extends Ellipsoid {
    method Helmert1906Ellipsoid (line 39) | private Helmert1906Ellipsoid() {
    method getInstance (line 50) | public static Helmert1906Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/Hough1956Ellipsoid.java
  class Hough1956Ellipsoid (line 26) | public class Hough1956Ellipsoid extends Ellipsoid {
    method Hough1956Ellipsoid (line 39) | private Hough1956Ellipsoid() {
    method getInstance (line 50) | public static Hough1956Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/IERS1989Ellipsoid.java
  class IERS1989Ellipsoid (line 26) | public class IERS1989Ellipsoid extends Ellipsoid {
    method IERS1989Ellipsoid (line 39) | private IERS1989Ellipsoid() {
    method getInstance (line 50) | public static IERS1989Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/InternationalEllipsoid.java
  class InternationalEllipsoid (line 26) | public class InternationalEllipsoid extends Ellipsoid {
    method InternationalEllipsoid (line 39) | private InternationalEllipsoid() {
    method getInstance (line 50) | public static InternationalEllipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/Krassovsky1940Ellipsoid.java
  class Krassovsky1940Ellipsoid (line 26) | public class Krassovsky1940Ellipsoid extends Ellipsoid {
    method Krassovsky1940Ellipsoid (line 39) | private Krassovsky1940Ellipsoid() {
    method getInstance (line 50) | public static Krassovsky1940Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/ModifiedAiryEllipsoid.java
  class ModifiedAiryEllipsoid (line 26) | public class ModifiedAiryEllipsoid extends Ellipsoid {
    method ModifiedAiryEllipsoid (line 39) | private ModifiedAiryEllipsoid() {
    method getInstance (line 50) | public static ModifiedAiryEllipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/ModifiedEverestEllipsoid.java
  class ModifiedEverestEllipsoid (line 26) | public class ModifiedEverestEllipsoid extends Ellipsoid {
    method ModifiedEverestEllipsoid (line 38) | public ModifiedEverestEllipsoid() {
    method getInstance (line 49) | public static ModifiedEverestEllipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/NewInternational1967Ellipsoid.java
  class NewInternational1967Ellipsoid (line 26) | public class NewInternational1967Ellipsoid extends Ellipsoid {
    method NewInternational1967Ellipsoid (line 39) | private NewInternational1967Ellipsoid() {
    method getInstance (line 50) | public static NewInternational1967Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/SouthAmerican1969Ellipsoid.java
  class SouthAmerican1969Ellipsoid (line 26) | public class SouthAmerican1969Ellipsoid extends Ellipsoid {
    method SouthAmerican1969Ellipsoid (line 39) | private SouthAmerican1969Ellipsoid() {
    method getInstance (line 50) | public static SouthAmerican1969Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/WGS60Ellipsoid.java
  class WGS60Ellipsoid (line 26) | public class WGS60Ellipsoid extends Ellipsoid {
    method WGS60Ellipsoid (line 39) | private WGS60Ellipsoid() {
    method getInstance (line 50) | public static WGS60Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/WGS66Ellipsoid.java
  class WGS66Ellipsoid (line 26) | public class WGS66Ellipsoid extends Ellipsoid {
    method WGS66Ellipsoid (line 39) | private WGS66Ellipsoid() {
    method getInstance (line 50) | public static WGS66Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/WGS72Ellipsoid.java
  class WGS72Ellipsoid (line 26) | public class WGS72Ellipsoid extends Ellipsoid {
    method WGS72Ellipsoid (line 39) | private WGS72Ellipsoid() {
    method getInstance (line 50) | public static WGS72Ellipsoid getInstance() {

FILE: src/uk/me/jstott/jcoord/ellipsoid/WGS84Ellipsoid.java
  class WGS84Ellipsoid (line 26) | public class WGS84Ellipsoid extends Ellipsoid {
    method WGS84Ellipsoid (line 38) | private WGS84Ellipsoid() {
    method getInstance (line 49) | public static WGS84Ellipsoid getInstance() {
Condensed preview — 191 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (980K chars).
[
  {
    "path": ".classpath",
    "chars": 710,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<classpath>\n\t<classpathentry kind=\"con\" path=\"com.android.ide.eclipse.adt.ANDROID"
  },
  {
    "path": ".externalToolBuilders/Set Build Info.launch",
    "chars": 847,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<launchConfiguration type=\"org.eclipse.ui.externaltools.ProgramBu"
  },
  {
    "path": ".gitignore",
    "chars": 40,
    "preview": ".gradle\nbin\nbuild\ngen\nres/raw/build.txt\n"
  },
  {
    "path": ".project",
    "chars": 1106,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<projectDescription>\n\t<name>satstat</name>\n\t<comment></comment>\n\t<projects>\n\t</pr"
  },
  {
    "path": ".settings/org.eclipse.jdt.core.prefs",
    "chars": 587,
    "preview": "eclipse.preferences.version=1\norg.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled\norg.eclipse.jdt.core.compi"
  },
  {
    "path": "AndroidManifest.xml",
    "chars": 3788,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package="
  },
  {
    "path": "LICENSE",
    "chars": 35115,
    "preview": "GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation,"
  },
  {
    "path": "README.md",
    "chars": 1187,
    "preview": "SatStat\n=======\n\nAndroid Location, Sensor and Radio Network Status\n\n<a href=\"https://f-droid.org/packages/com.vonglasow."
  },
  {
    "path": "build.gradle",
    "chars": 1525,
    "preview": "buildscript {\n    repositories {\n        mavenCentral()\n    }\n\n    dependencies {\n        classpath 'com.android.tools.b"
  },
  {
    "path": "metadata/en-US/changelogs/10.txt",
    "chars": 140,
    "preview": "Support for legacy (3.0+) Android versions (#1)\nWiFi now displays channels (#2)\nSky plot now aligned correctly when disp"
  },
  {
    "path": "metadata/en-US/changelogs/20.txt",
    "chars": 226,
    "preview": "AGPS data download\nSupport for 5 GHz WiFI frequencies (#9)\nTab navigation in action bar in addition to swiping\nPrevent N"
  },
  {
    "path": "metadata/en-US/changelogs/2000.txt",
    "chars": 1025,
    "preview": "Map view: new view to visualize reported locations\nGPS view: display SNR bars for all known satellites (including Beidou"
  },
  {
    "path": "metadata/en-US/changelogs/2010.txt",
    "chars": 853,
    "preview": "Add option for metric vs. Imperial measurement units\nAdd option for UTC vs. local time for GPS timestamps\nAdd option to "
  },
  {
    "path": "metadata/en-US/changelogs/2020.txt",
    "chars": 98,
    "preview": "Fix crashes when permissions are denied\nFix memory leak when stopping or destroying main Activity\n"
  },
  {
    "path": "metadata/en-US/changelogs/30.txt",
    "chars": 117,
    "preview": "Fix regression from 60b8bec pushing sky plot off screen in landscape\nLog satellites with near-zero elevation/azimuth\n"
  },
  {
    "path": "metadata/en-US/changelogs/3000.txt",
    "chars": 632,
    "preview": "Support for offline maps, which can be shared with other Mapsforge apps (#65)\nAdd option to show both UMTS/LTE cell ID r"
  },
  {
    "path": "metadata/en-US/changelogs/3010.txt",
    "chars": 140,
    "preview": "Fix crash in Settings on API levels prior to 19 (#89)\nUpdate French translation (thanks eliovir)\nUse correct unit for sp"
  },
  {
    "path": "metadata/en-US/changelogs/3020.txt",
    "chars": 88,
    "preview": "Update Portuguese translation\nFix crash in CDMA cell view\nFix nautic coordinate display\n"
  },
  {
    "path": "metadata/en-US/changelogs/3030.txt",
    "chars": 885,
    "preview": "Sky plot: make compass orientation work on devices with compass but no orientation sensor\nSky plot: add support for Gali"
  },
  {
    "path": "metadata/en-US/changelogs/40.txt",
    "chars": 414,
    "preview": "GPS status notification whenever an app accesses GPS (configurable)\nAdd signal-to-noise graph for GPS/GLONASS satellites"
  },
  {
    "path": "metadata/en-US/changelogs/50.txt",
    "chars": 116,
    "preview": "Update AGPS data when connecting to a WiFi network (configurable)\nPrevent crash when sensors report zero resolution\n"
  },
  {
    "path": "metadata/en-US/changelogs/60.txt",
    "chars": 29,
    "preview": "Prevent crash on AGPS update\n"
  },
  {
    "path": "metadata/en-US/changelogs/70.txt",
    "chars": 547,
    "preview": "Show cellular network type (#21)\nShow type of WiFi encryption (#20)\nAuto-refresh WiFi network list every second (#26)\nTo"
  },
  {
    "path": "metadata/en-US/changelogs/80.txt",
    "chars": 145,
    "preview": "Fix time conversion error that could cause an endless AGPS update loop (#31)\nTypo in French translation\nShow TTFF in not"
  },
  {
    "path": "mkpng",
    "chars": 3807,
    "preview": "#!/bin/bash\n\n## Generates PNG drawables from all SVG files.\n\nSVG_PATH=./extra\n\nLDPI_PATH=./res/drawable-ldpi\nMDPI_PATH=."
  },
  {
    "path": "proguard-project.txt",
    "chars": 781,
    "preview": "# To enable ProGuard in your project, edit project.properties\n# to define the proguard.config property as described in t"
  },
  {
    "path": "project.properties",
    "chars": 732,
    "preview": "# This file is automatically generated by Android Tools.\n# Do not modify this file -- YOUR CHANGES WILL BE ERASED!\n#\n# T"
  },
  {
    "path": "res/drawable/divider.xml",
    "chars": 355,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ImageView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  android:s"
  },
  {
    "path": "res/drawable/ic_stat_notify_nolocation.xml",
    "chars": 870,
    "preview": "<animation-list xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:oneshot=\"false\">\n    <item androi"
  },
  {
    "path": "res/drawable/list_selector_background.xml",
    "chars": 2050,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2008 The Android Open Source Project Licensed under the \n\tApac"
  },
  {
    "path": "res/drawable/list_selector_background_transition.xml",
    "chars": 883,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Copyright (C) 2008 The Android Open Source Project\n\n     Licensed under the "
  },
  {
    "path": "res/drawable/zoom_control_in.xml",
    "chars": 379,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <item "
  },
  {
    "path": "res/drawable/zoom_control_out.xml",
    "chars": 382,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n\n    <item "
  },
  {
    "path": "res/layout/activity_about.xml",
    "chars": 1590,
    "preview": "<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/t"
  },
  {
    "path": "res/layout/activity_legend.xml",
    "chars": 22470,
    "preview": "<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/t"
  },
  {
    "path": "res/layout/activity_main.xml",
    "chars": 394,
    "preview": "<com.vonglasow.michael.satstat.widgets.MapViewPager xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns"
  },
  {
    "path": "res/layout/activity_map_download.xml",
    "chars": 2058,
    "preview": "<FrameLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/tool"
  },
  {
    "path": "res/layout/activity_settings.xml",
    "chars": 504,
    "preview": "<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/t"
  },
  {
    "path": "res/layout/alert_map_path.xml",
    "chars": 3620,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ScrollView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    androi"
  },
  {
    "path": "res/layout/download_list_item.xml",
    "chars": 3004,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    andr"
  },
  {
    "path": "res/layout/fragment_main_dummy.xml",
    "chars": 668,
    "preview": "<RelativeLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:tools=\"http://schemas.android.com/t"
  },
  {
    "path": "res/layout/fragment_main_gps.xml",
    "chars": 14115,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmln"
  },
  {
    "path": "res/layout/fragment_main_map.xml",
    "chars": 1245,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<FrameLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    andro"
  },
  {
    "path": "res/layout/fragment_main_radio.xml",
    "chars": 15520,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ScrollView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    androi"
  },
  {
    "path": "res/layout/fragment_main_sensors.xml",
    "chars": 25875,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ScrollView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    androi"
  },
  {
    "path": "res/layout/ril_cdma_list_item.xml",
    "chars": 1382,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<TableRow xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:"
  },
  {
    "path": "res/layout/ril_list_item.xml",
    "chars": 2602,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<TableRow xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:"
  },
  {
    "path": "res/layout/tree_list_item_wrapper.xml",
    "chars": 748,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\" android:"
  },
  {
    "path": "res/layout-land/fragment_main_gps.xml",
    "chars": 16993,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmln"
  },
  {
    "path": "res/layout-land/fragment_main_sensors.xml",
    "chars": 29601,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ScrollView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    androi"
  },
  {
    "path": "res/layout-w640dp/fragment_main_radio.xml",
    "chars": 17264,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<ScrollView xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    androi"
  },
  {
    "path": "res/menu/main.xml",
    "chars": 526,
    "preview": "<menu xmlns:android=\"http://schemas.android.com/apk/res/android\" >\n\n    <item\n        android:id=\"@+id/action_agps\"\n    "
  },
  {
    "path": "res/raw/.gitignore",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "res/values/attrs.xml",
    "chars": 2628,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\t<declare-styleable name=\"TreeViewList\">\n\t    <attr name=\"collapsible"
  },
  {
    "path": "res/values/dimens.xml",
    "chars": 213,
    "preview": "<resources>\n\n    <!-- Default screen margins, per the Android Design guidelines. -->\n    <dimen name=\"activity_horizonta"
  },
  {
    "path": "res/values/strings.xml",
    "chars": 16286,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources xmlns:tools=\"http://schemas.android.com/tools\" tools:ignore=\"MissingTr"
  },
  {
    "path": "res/values/styles.xml",
    "chars": 3132,
    "preview": "<resources>\n\n    <!--\n        Base application theme, dependent on API level. This theme is replaced\n        by AppBaseT"
  },
  {
    "path": "res/values/treeview_styles.xml",
    "chars": 281,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <style parent=\"@android:attr/listViewStyle\" name=\"treeViewListSty"
  },
  {
    "path": "res/values-ca/strings.xml",
    "chars": 14295,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <string name=\"app_name\">SatStat</string>\n    <string name=\"actio"
  },
  {
    "path": "res/values-de/strings.xml",
    "chars": 15208,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <string name=\"app_name\">SatStat</string>\n    <string name=\"actio"
  },
  {
    "path": "res/values-es/strings.xml",
    "chars": 14403,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <string name=\"app_name\">SatStat</string>\n    <string name=\"actio"
  },
  {
    "path": "res/values-fr/strings.xml",
    "chars": 15460,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <string name=\"app_name\">SatStat</string>\n    <string name=\"actio"
  },
  {
    "path": "res/values-hu/strings.xml",
    "chars": 15714,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources xmlns:tools=\"http://schemas.android.com/tools\" tools:ignore=\"MissingTr"
  },
  {
    "path": "res/values-it/strings.xml",
    "chars": 14621,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <string name=\"app_name\">SatStat</string>\n    <string name=\"actio"
  },
  {
    "path": "res/values-lt/strings.xml",
    "chars": 14587,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n\n    <string name=\"app_name\">SatStat</string>\n    <string name=\"actio"
  },
  {
    "path": "res/values-pt-rBR/strings.xml",
    "chars": 15113,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources xmlns:tools=\"http://schemas.android.com/tools\" tools:ignore=\"MissingTr"
  },
  {
    "path": "res/values-sw600dp/dimens.xml",
    "chars": 196,
    "preview": "<resources>\n\n    <!--\n         Customize dimensions originally defined in res/values/dimens.xml (such as\n         screen"
  },
  {
    "path": "res/values-sw720dp-land/dimens.xml",
    "chars": 269,
    "preview": "<resources>\n\n    <!--\n         Customize dimensions originally defined in res/values/dimens.xml (such as\n         screen"
  },
  {
    "path": "res/values-v21/styles.xml",
    "chars": 725,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    \n    <"
  },
  {
    "path": "res/xml/preferences.xml",
    "chars": 4492,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<PreferenceScreen xmlns:android=\"http://schemas.android.com/apk/res/android\" >\n\n "
  },
  {
    "path": "setbuild.sh",
    "chars": 171,
    "preview": "#!/bin/bash\ngit update-index --assume-unchanged res/raw/build.txt\necho git-`git log -1 --pretty=format:%h``git diff-inde"
  },
  {
    "path": "src/com/hzi/UTM.java",
    "chars": 3318,
    "preview": "package com.hzi;\n\nimport android.content.Context;\nimport android.content.res.Resources;\n\nimport com.vonglasow.michael.sa"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/Const.java",
    "chars": 7460,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/GpsEventReceiver.java",
    "chars": 12214,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/PasvLocListenerService.java",
    "chars": 13992,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/SatStatApplication.java",
    "chars": 1656,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/data/CellTower.java",
    "chars": 6674,
    "preview": "package com.vonglasow.michael.satstat.data;\n\nimport android.telephony.TelephonyManager;\nimport android.util.Log;\n\npublic"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/data/CellTowerCdma.java",
    "chars": 1838,
    "preview": "package com.vonglasow.michael.satstat.data;\n\npublic class CellTowerCdma extends CellTower {\n\tpublic static final String "
  },
  {
    "path": "src/com/vonglasow/michael/satstat/data/CellTowerGsm.java",
    "chars": 4963,
    "preview": "package com.vonglasow.michael.satstat.data;\n\npublic class CellTowerGsm extends CellTower {\n\tpublic static final String A"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/data/CellTowerList.java",
    "chars": 1539,
    "preview": "package com.vonglasow.michael.satstat.data;\n\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.Hash"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/data/CellTowerListCdma.java",
    "chars": 3219,
    "preview": "package com.vonglasow.michael.satstat.data;\n\nimport java.util.List;\n\nimport android.annotation.TargetApi;\nimport android"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/data/CellTowerListGsm.java",
    "chars": 12478,
    "preview": "package com.vonglasow.michael.satstat.data;\n\nimport java.util.List;\n\nimport android.annotation.TargetApi;\nimport android"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/data/CellTowerListLte.java",
    "chars": 9061,
    "preview": "package com.vonglasow.michael.satstat.data;\n\nimport java.util.List;\n\nimport android.annotation.TargetApi;\nimport android"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/data/CellTowerLte.java",
    "chars": 3729,
    "preview": "package com.vonglasow.michael.satstat.data;\n\npublic class CellTowerLte extends CellTower {\n\tpublic static final String A"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/ui/AboutActivity.java",
    "chars": 2560,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/ui/GpsSectionFragment.java",
    "chars": 12186,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n *\n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free software"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/ui/LegendActivity.java",
    "chars": 4517,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/ui/MainActivity.java",
    "chars": 38313,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/ui/MapDownloadActivity.java",
    "chars": 6894,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/ui/MapSectionFragment.java",
    "chars": 31559,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/ui/RadioSectionFragment.java",
    "chars": 30766,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/ui/SensorSectionFragment.java",
    "chars": 12277,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/ui/SettingsActivity.java",
    "chars": 14508,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/utils/DownloadTreeViewAdapter.java",
    "chars": 24676,
    "preview": "/*\n * Copyright (c) 2011, Polidea\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n "
  },
  {
    "path": "src/com/vonglasow/michael/satstat/utils/HttpDownloader.java",
    "chars": 9121,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/utils/PermissionHelper.java",
    "chars": 6294,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/utils/RemoteDirListListener.java",
    "chars": 1131,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/utils/RemoteDirListTask.java",
    "chars": 2908,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/utils/RemoteFile.java",
    "chars": 3025,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/utils/RemoteFileComparator.java",
    "chars": 614,
    "preview": "package com.vonglasow.michael.satstat.utils;\n\nimport java.text.Collator;\nimport java.util.Comparator;\n\n/**\n * A Comparat"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/utils/WifiCapabilities.java",
    "chars": 5888,
    "preview": "/*\n * Copyright © 2014–2016 Michael von Glasow.\n * Portions copyright © 2007, 2012 The Android Open Source Project\n * \n "
  },
  {
    "path": "src/com/vonglasow/michael/satstat/utils/WifiScanResultComparator.java",
    "chars": 2448,
    "preview": "package com.vonglasow.michael.satstat.utils;\n\nimport java.util.Comparator;\n\nimport android.net.wifi.ScanResult;\n\n/**\n * "
  },
  {
    "path": "src/com/vonglasow/michael/satstat/widgets/GpsSnrView.java",
    "chars": 17907,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/widgets/GpsStatusView.java",
    "chars": 6956,
    "preview": "/*\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free softwar"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/widgets/LocProviderPreference.java",
    "chars": 1330,
    "preview": "package com.vonglasow.michael.satstat.widgets;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\nimport com.vonglasow"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/widgets/MapViewPager.java",
    "chars": 1082,
    "preview": "package com.vonglasow.michael.satstat.widgets;\n\nimport org.mapsforge.map.android.view.MapView;\n\nimport android.content.C"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/widgets/NetworkTypePreference.java",
    "chars": 1585,
    "preview": "package com.vonglasow.michael.satstat.widgets;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport android.conten"
  },
  {
    "path": "src/com/vonglasow/michael/satstat/widgets/SquareView.java",
    "chars": 1550,
    "preview": "/*\n * Copyright © 2013 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n *\n * LSRN Tools is free software: yo"
  },
  {
    "path": "src/pl/polidea/treeview/AbstractTreeViewAdapter.java",
    "chars": 10452,
    "preview": "package pl.polidea.treeview;\n\nimport com.vonglasow.michael.satstat.R;\n\nimport android.app.Activity;\nimport android.conte"
  },
  {
    "path": "src/pl/polidea/treeview/DownloadTreeStateManager.java",
    "chars": 1769,
    "preview": "/*\n * Copyright (c) 2011, Polidea\n * Copyright © 2013–2016 Michael von Glasow.\n * \n * This file is part of LSRN Tools.\n "
  },
  {
    "path": "src/pl/polidea/treeview/InMemoryTreeNode.java",
    "chars": 3187,
    "preview": "package pl.polidea.treeview;\n\nimport java.io.Serializable;\nimport java.util.LinkedList;\nimport java.util.List;\n\n/**\n * N"
  },
  {
    "path": "src/pl/polidea/treeview/InMemoryTreeStateManager.java",
    "chars": 12864,
    "preview": "package pl.polidea.treeview;\n\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collections;\nimport "
  },
  {
    "path": "src/pl/polidea/treeview/NodeAlreadyInTreeException.java",
    "chars": 397,
    "preview": "package pl.polidea.treeview;\n\n/**\n * The node being added is already in the tree.\n * \n */\npublic class NodeAlreadyInTree"
  },
  {
    "path": "src/pl/polidea/treeview/NodeNotInTreeException.java",
    "chars": 367,
    "preview": "package pl.polidea.treeview;\n\n/**\n * This exception is thrown when the tree does not contain node requested.\n * \n */\npub"
  },
  {
    "path": "src/pl/polidea/treeview/TreeBuilder.java",
    "chars": 4592,
    "preview": "package pl.polidea.treeview;\n\nimport android.util.Log;\n\n/**\n * Allows to build tree easily in sequential mode (you have "
  },
  {
    "path": "src/pl/polidea/treeview/TreeConfigurationException.java",
    "chars": 338,
    "preview": "package pl.polidea.treeview;\n\n/**\n * Exception thrown when there is a problem with configuring tree.\n * \n */\npublic clas"
  },
  {
    "path": "src/pl/polidea/treeview/TreeNodeInfo.java",
    "chars": 1611,
    "preview": "package pl.polidea.treeview;\n\n/**\n * Information about the node.\n * \n * @param <T>\n *            type of the id for the "
  },
  {
    "path": "src/pl/polidea/treeview/TreeStateManager.java",
    "chars": 4940,
    "preview": "package pl.polidea.treeview;\n\nimport java.io.Serializable;\nimport java.util.List;\n\nimport android.database.DataSetObserv"
  },
  {
    "path": "src/pl/polidea/treeview/TreeViewList.java",
    "chars": 7031,
    "preview": "package pl.polidea.treeview;\n\nimport com.vonglasow.michael.satstat.R;\n\nimport android.content.Context;\nimport android.co"
  },
  {
    "path": "src/pl/polidea/treeview/overview.html",
    "chars": 1020,
    "preview": "<html>\n<body>\nThis is a small utility that provides quite configurable tree view list.\nIt is based on standard android l"
  },
  {
    "path": "src/pl/polidea/treeview/package-info.java",
    "chars": 85,
    "preview": "/**\n * Provides expandable Tree View implementation.\n */\npackage pl.polidea.treeview;"
  },
  {
    "path": "src/uk/me/jstott/jcoord/CoordinateSystem.java",
    "chars": 1220,
    "preview": "package uk.me.jstott.jcoord;\n\nimport uk.me.jstott.jcoord.datum.Datum;\n\n/**\n * <p>\n * This class is part of the Jcoord pa"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ECEFRef.java",
    "chars": 5014,
    "preview": "package uk.me.jstott.jcoord;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.datum.WGS84Datum;\nimpor"
  },
  {
    "path": "src/uk/me/jstott/jcoord/IrishRef.java",
    "chars": 12398,
    "preview": "package uk.me.jstott.jcoord;\n\nimport uk.me.jstott.jcoord.datum.Ireland1965Datum;\nimport uk.me.jstott.jcoord.ellipsoid.El"
  },
  {
    "path": "src/uk/me/jstott/jcoord/LatLng.java",
    "chars": 28012,
    "preview": "package uk.me.jstott.jcoord;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.datum.WGS84Datum;\nimpor"
  },
  {
    "path": "src/uk/me/jstott/jcoord/MGRSRef.java",
    "chars": 19228,
    "preview": "package uk.me.jstott.jcoord;\n\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\n\nimport uk.me.jstott.jcoor"
  },
  {
    "path": "src/uk/me/jstott/jcoord/NotDefinedOnUTMGridException.java",
    "chars": 746,
    "preview": "package uk.me.jstott.jcoord;\n\n/**\n * <p>\n * This exception is thrown when\n * </p> \n * \n * <p>\n * (c) 2006 Jonathan Stott"
  },
  {
    "path": "src/uk/me/jstott/jcoord/OSRef.java",
    "chars": 16069,
    "preview": "package uk.me.jstott.jcoord;\n\nimport uk.me.jstott.jcoord.datum.OSGB36Datum;\nimport uk.me.jstott.jcoord.ellipsoid.Airy183"
  },
  {
    "path": "src/uk/me/jstott/jcoord/RefEll.java",
    "chars": 5745,
    "preview": "package uk.me.jstott.jcoord;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"http://www.j"
  },
  {
    "path": "src/uk/me/jstott/jcoord/Test.java",
    "chars": 8578,
    "preview": "package uk.me.jstott.jcoord;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"http://www.j"
  },
  {
    "path": "src/uk/me/jstott/jcoord/UTMRef.java",
    "chars": 9087,
    "preview": "package uk.me.jstott.jcoord;\n\nimport uk.me.jstott.jcoord.datum.WGS84Datum;\n\n/**\n * <p>\n * This class is part of the Jcoo"
  },
  {
    "path": "src/uk/me/jstott/jcoord/Util.java",
    "chars": 1672,
    "preview": "package uk.me.jstott.jcoord;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"http://www.j"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/Datum.java",
    "chars": 3744,
    "preview": "package uk.me.jstott.jcoord.datum;\n\nimport uk.me.jstott.jcoord.ellipsoid.Ellipsoid;\n\n/**\n * <p>\n * This class is part of"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/ETRF89Datum.java",
    "chars": 1143,
    "preview": "package uk.me.jstott.jcoord.datum;\n\nimport uk.me.jstott.jcoord.ellipsoid.WGS84Ellipsoid;\n\n/**\n * <p>\n * This class is pa"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/Ireland1965Datum.java",
    "chars": 1178,
    "preview": "package uk.me.jstott.jcoord.datum;\n\nimport uk.me.jstott.jcoord.ellipsoid.ModifiedAiryEllipsoid;\n\n/**\n * <p>\n * This clas"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/OSGB36Datum.java",
    "chars": 1144,
    "preview": "package uk.me.jstott.jcoord.datum;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"http:/"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/WGS84Datum.java",
    "chars": 1097,
    "preview": "package uk.me.jstott.jcoord.datum;\n\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"http:"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27AlaskaDatum.java",
    "chars": 1283,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27AlbertaBritishColumbiaDatum.java",
    "chars": 1429,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27AleutianEastDatum.java",
    "chars": 1334,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27AleutianWestDatum.java",
    "chars": 1333,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27BahamasDatum.java",
    "chars": 1291,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27CanadaDatum.java",
    "chars": 1284,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27CanadaEastDatum.java",
    "chars": 1319,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27CanadaManitobaOntarioDatum.java",
    "chars": 1409,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27CanadaNWTerritoryDatum.java",
    "chars": 1376,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27CanadaYukonDatum.java",
    "chars": 1326,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27CanalZoneDatum.java",
    "chars": 1309,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27CaribbeanDatum.java",
    "chars": 1307,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27CentralAmericaDatum.java",
    "chars": 1340,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27ContiguousUSDatum.java",
    "chars": 1367,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27CubaDatum.java",
    "chars": 1267,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27EasternUSDatum.java",
    "chars": 1310,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27GreenlandDatum.java",
    "chars": 1307,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27MexicoDatum.java",
    "chars": 1284,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27SanSalvadorDatum.java",
    "chars": 1325,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/datum/nad27/NAD27WesternUSDatum.java",
    "chars": 1310,
    "preview": "package uk.me.jstott.jcoord.datum.nad27;\n\nimport uk.me.jstott.jcoord.datum.Datum;\nimport uk.me.jstott.jcoord.ellipsoid.C"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/Airy1830Ellipsoid.java",
    "chars": 1051,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/AustralianNational1966Ellipsoid.java",
    "chars": 1149,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/Bessel1841Ellipsoid.java",
    "chars": 1066,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/Clarke1866Ellipsoid.java",
    "chars": 1061,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/Clarke1880Ellipsoid.java",
    "chars": 1066,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/Ellipsoid.java",
    "chars": 4117,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/EverestEllipsoid.java",
    "chars": 1056,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/Fischer1960Ellipsoid.java",
    "chars": 1070,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/Fischer1968Ellipsoid.java",
    "chars": 1070,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/GRS67Ellipsoid.java",
    "chars": 1028,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/GRS75Ellipsoid.java",
    "chars": 1026,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/GRS80Ellipsoid.java",
    "chars": 1025,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/Hayford1910Ellipsoid.java",
    "chars": 1070,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/Helmert1906Ellipsoid.java",
    "chars": 1069,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/Hough1956Ellipsoid.java",
    "chars": 1055,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/IERS1989Ellipsoid.java",
    "chars": 1049,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/InternationalEllipsoid.java",
    "chars": 1081,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/Krassovsky1940Ellipsoid.java",
    "chars": 1091,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/ModifiedAiryEllipsoid.java",
    "chars": 1093,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/ModifiedEverestEllipsoid.java",
    "chars": 1096,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/NewInternational1967Ellipsoid.java",
    "chars": 1133,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/SouthAmerican1969Ellipsoid.java",
    "chars": 1115,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/WGS60Ellipsoid.java",
    "chars": 1026,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/WGS66Ellipsoid.java",
    "chars": 1026,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/WGS72Ellipsoid.java",
    "chars": 1022,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  },
  {
    "path": "src/uk/me/jstott/jcoord/ellipsoid/WGS84Ellipsoid.java",
    "chars": 1020,
    "preview": "package uk.me.jstott.jcoord.ellipsoid;\n\n/**\n * <p>\n * This class is part of the Jcoord package. Visit the <a\n * href=\"ht"
  }
]

// ... and 8 more files (download for full content)

About this extraction

This page contains the full source code of the mvglasow/satstat GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 191 files (891.4 KB), approximately 235.0k tokens, and a symbol index with 761 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!