How To Install libgeo-helmerttransform-perl on Kali Linux
Introduction
In this tutorial we learn how to install libgeo-helmerttransform-perl on Kali Linux.
What is libgeo-helmerttransform-perl
libgeo-helmerttransform-perl is:
It is usual to describe geographical points in terms of their polar coordinates (latitude, longitude and altitude) referenced to a “datum ellipsoid”, which is used to approximate the Earth’s geoid. The latitude, longitude and altitude of a given physical point vary depending on which datum ellipsoid is in use. Unfortunately, a number of ellipsoids are in everyday use, and so it is often necessary to transform geographical coordinates between different datum ellipsoids.
Two different datum ellipsoids may differ in the locations of their centers, or in their shape; and there may be an angle between their equatorial planes or the meridians relative to which longitude is measured. The Helmert Transform, which this module implements, is a linear transformation of coordinates between pairs of datum ellipsoids in the limit of small angles of deviation between them.
There are three methods to install libgeo-helmerttransform-perl on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install libgeo-helmerttransform-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libgeo-helmerttransform-perl using apt-get by running the following command:
sudo apt-get -y install libgeo-helmerttransform-perlInstall libgeo-helmerttransform-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libgeo-helmerttransform-perl using apt by running the following command:
sudo apt -y install libgeo-helmerttransform-perlInstall libgeo-helmerttransform-perl Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install libgeo-helmerttransform-perl using aptitude by running the following command:
sudo aptitude -y install libgeo-helmerttransform-perlHow To Uninstall libgeo-helmerttransform-perl on Kali Linux
To uninstall only the libgeo-helmerttransform-perl package we can use the following command:
sudo apt-get remove libgeo-helmerttransform-perlUninstall libgeo-helmerttransform-perl And Its Dependencies
To uninstall libgeo-helmerttransform-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libgeo-helmerttransform-perlRemove libgeo-helmerttransform-perl Configurations and Data
To remove libgeo-helmerttransform-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libgeo-helmerttransform-perlRemove libgeo-helmerttransform-perl configuration, data, and all of its dependencies
We can use the following command to remove libgeo-helmerttransform-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libgeo-helmerttransform-perlDependencies
libgeo-helmerttransform-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libgeo-helmerttransform-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.