July 2019

Computing
Bar plots on Google Earth Pro

Creating Bar plots kml files for Google Earth Pro using Python googleearthplot referring to this site. Install Suppose pandas is installed. Install simplekml and googleearthplot. pip install simplekml pip install googleearthplot googleearthplot is a Python2 code and some modification is required in Python3 because of an error associated with print statement. First find the location of installed googleearthplot as follows: pip show googleearthplot Edit googleearthplot.py to modify the lines of print statement by converting print **** to print(****) using parentheses. Usage Open a Jupyter Notebook and import packages. Referring to the original site, some examples are shown. Double cricking on created kml file, a plot should be presented on Google […]

Read more