Google Maps and Google Earth are very common platforms today to explore maps and satellite images of the earth. But there are many other ways to explore the earth. Some are listed here. 1. Earth Explorer This map is developed by USGS helpful to obtain earth imagery across available geo-spatial data types. Users can navigate via interactive map or text search to obtain Landsat satellite imagery, Radar data, UAS data, digital line graphs, digital elevation model data, aerial photos, Sentinel satellite data, some commercial satellite imagery including IKONOS and OrbView3, land cover data, digital map data from the National Map, and many other datasets. Users can search by exact location via the interactive map or input specific coordinates to view what data types are available. 2. Sentinel Hub This platform developed by Sinergise has Sentinel, Landsat, and other Earth observation imagery easily accessible for browsing, visualization and analysi...
#libraries import pandas as pd #matplotlib has several module, for charts/graphs we use pyplot import matplotlib.pyplot as plt #graph function from plt Chart type Chart code Line chart plt.plot() Scatter plot plt.scatter() Bar chart plt.bar() Pie chart plt.pie() Histogram plt.hist() Add a title plt.title() Add a legend plt.legend() Add axis labels plt.ylabel(), plt.xlabel() Adjust axes plt.xscale(), plt.yticks() Print graph plt.show()