Rohit and Hans,
Thank you so much for the excellent solutions.
I tried to find air temperature data for the hottest and coldest place in the world based on Wikipedia.

(*World Highest Temperature*)
In[50]:= GeoPosition["36d 27m N, 116\[Degree] 51'W"] // N
Out[50]= GeoPosition[{36.45, -116.85}]
In[51]:= WeatherData[{36.45`, -116.85`}]
In[52]:= GeoListPlot[WeatherData[{36.45`, -116.85`}],
GeoBackground -> GeoStyling["Satellite"]]
data = WeatherData["KDRA",
"Temperature", {{1911, 1, 1}, {2020, 12, 25}, "Day"}]
ListLinePlot[data["Values"]]
(*World Lowest Temperature*)
In[57]:= GeoPosition["77d 32m S, 106\[Degree] 40'E"] // N
Out[57]= GeoPosition[{-77.5333, 106.667}]
WeatherData[{-77.53, 106.66}]
In[61]:= GeoListPlot[WeatherData[{-77.53, 106.66}],
GeoBackground -> Automatic]
In[64]:= data =
WeatherData["WMO89606",
"Temperature", {{1911, 1, 1}, {2020, 12, 25}, "Day"}]
ListLinePlot[data["Values"]]
I couldn't get data from 1911 ?! Also, How do I find out if this data has missing data or not?