Skip to content

Latest commit

 

History

History

Desafio criação de pacotes de processamento de imagens em Python

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

earth_distances package

Description. The package earth_distances is used to:

Distance:
	- Calculate and returns distances between two points on the surface of
	the Earth, or another sphere, provided its radius, rounded to the third 
	decimal place
Map_Plotting:	
	- Plot the points on a map of our planet, alongside the distance line
	in a desired color

Installation

Use the package manager pip to install earth_distances

pip install earth_distances

Usage

from earth_distances.distance_calculation import harvesini
# Calculating the distance between Paris and Beijing
print(harvesini.harvesini_distance(48.856613, 2.352222, 39.904202, 116.407394))
>>>8216984.310
from earth_distances.map_plotting import world_map_plot
# Plotting the map related to Paris and Beijing 
world_map_plot.plot_world_map(48.856613, 2.352222, 39.904202, 116.407394)

Author

Gabriel Vinicius Sebastião

License

MIT