Metadata-Version: 2.1
Name: earth_distances
Version: 0.0.7
Summary: Package focused on Earth distance calculation and plotting
Home-page: https://tinyurl.com/2p83nw5z
Author: Gabriel Vinicius Sebastião
Author-email: gabrielvrsas@gmail.com
License: UNKNOWN
Description: # 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 thte
        	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](https://pip.pypa.io/en/stable/) to install earth_distances
        
        ```bash
        pip install earth_distances
        ```
        
        ## Usage
        
        ```python
        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
        ```
        
        ```python
        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)
        ```
        ![](https://raw.githubusercontent.com/gabedewitt/dio-bootcamps/main/Python%20para%20Cientistas%20de%20Dados/Desafio%20cria%C3%A7%C3%A3o%20de%20pacotes%20de%20processamento%20de%20imagens%20em%20Python/Screenshot_1.png)
        ## Author
        Gabriel Vinicius SebastiÃ£o
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
Platform: UNKNOWN
Requires-Python: >=3.8.5
Description-Content-Type: text/markdown
