protected void ButtonWindIndex_Click(object sender, EventArgs e)
        {
            string zipcode = validateAndReturnZipCode();

            if (zipcode != null)
            {
                LabelWindIndex.Visible = true;
                decimal windIndex = 0;

                string latlon = getLatLonByZipCode(zipcode);

                string[] latLonArray = latlon.Split(',');
                decimal  latitude    = Convert.ToDecimal(latLonArray[0]);
                decimal  longitude   = Convert.ToDecimal(latLonArray[1]);

                LocationServicesClient client = new LocationServicesClient();
                windIndex = client.getWindIntensity(latitude, longitude);

                if (windIndex != 0 && windIndex > 7)
                {
                    LabelWindIndex.Text = "High";
                }
                else if (windIndex != 0 && windIndex > 4 && windIndex <= 7)
                {
                    LabelWindIndex.Text = "Medium";
                }
                else if (windIndex != 0)
                {
                    LabelWindIndex.Text = "Low";
                }
                else
                {
                    LabelWindIndex.Text = "Something went wrong in backend";
                }
            }
        }