Brownsville, TX - Hurricane Information & Risks (2024)

Home

»

Hurricanes

»Texas

»Cameron County

»Brownsville

Brownsville, TX is in a very high risk hurricane zone. 37 hurricanes have been recorded in the Brownsville, TX since 1930. The largest hurricane was Alice in 1954. The most recent Brownsville, TX hurricane was Don in 2011.

View By Year

2011 Hurricane And Storm Summary

Hurricane Information For Brownsville, TX

Brownsville, TX - Hurricane Information & Risks (2)

'; var hurricaneYear = 2011; var hurricaneScale = {'Low': '#5ea81d', 'Moderate': '#ffd553', 'Very Low': '#df892d', 'High': '#ec2e2e', 'Very High': '#712a2a'}; function initialize_hurricane() { var zoomlevel; zoomlevel = 8; map = new Microsoft.Maps.Map(document.getElementById('myMap'), { credentials: "AtTWBfjVcFFmYaXxadmPQoHIWNCZdEMDJ0k3d5455gF7io3UWLTjOCODKPGuh1dv", center: new Microsoft.Maps.Location(26.018326, -97.453826), mapTypeId: Microsoft.Maps.MapTypeId.auto, zoom: zoomlevel, showScalebar: false, showDashboard: false, enableSearchLogo: false, disableBirdseye: false, }); //load maps if(hurricaneslines.length){ hurricaneslines = []; } resetMap(); Microsoft.Maps.Events.addHandler(map, 'viewchangeend', resetMap); initCenter = map.getCenter(); // this is for mapnavigation system. initial_zoom_level = map.getZoom(); infobox = new Microsoft.Maps.Infobox(new Microsoft.Maps.Location(0, 0), {visible: false}); infobox.setMap(map); MapNavigation.InitMapNavigation(); } function resetMap() { $.ajax({ url: "/ajaxcalls/hurricanesmap.html", type: "post", data: {"type": "city", "stateAbbr": "", "countyid": "", "hfid": "481076801", "year": hurricaneYear, "sid": Math.random()}, dataType: "json", success: function (res_data, status) { loadMultipleHurricanePoints(res_data); }, complete: function () { } }); } function loadMultipleHurricanePoints(hurricanes) { //console.log(hurricanes); $.each(hurricanes, function () { var hurricane = this; var lineVertices = new Array(); var lat = ''; var lon = ''; var risklevel = 'Low'; var popupText = ''; $.each(hurricane, function () { var hurricanePoints = this; //console.log(hurricanePoints.latitude); lineVertices.push(new Microsoft.Maps.Location(hurricanePoints.latitude, hurricanePoints.longitude)); lat = hurricanePoints.latitude; lon = hurricanePoints.longitude; risklevel = hurricanePoints.risklevel; year = hurricanePoints.year; popupText = hurricanePoints.popup; }); //console.log(lineVertices.length); //console.log(lineVertices); var polylineStrokeColor = Microsoft.Maps.Color.fromHex(hurricaneScale[risklevel]); // Add a pin to the pins entity collection var pin = new Microsoft.Maps.Polyline( lineVertices, {strokeColor: polylineStrokeColor, strokeThickness: 3} ); pin.year = year; pin.risklevel = risklevel; pin.metadata = { title: 'hurricanes', description: popupText }; hurricaneslines.push(pin); //console.log(popupText); Microsoft.Maps.Events.addHandler(pin, 'mouseover', displayHurricaneMarker); Microsoft.Maps.Events.addHandler(pin, 'click', displayHurricaneMarker); Microsoft.Maps.Events.addHandler(pin, 'mouseout', hideHurricaneMarker); /*var htmlContent = pushpinFrameHTML.replace('{content}', popupText); htmlContent = htmlContent.replace('

', '

'); infobox1 = new Microsoft.Maps.Infobox(new Microsoft.Maps.Location(lat, lon), {title: '', visible: false, showPointer: false, htmlContent: htmlContent, zIndex: 1000, width: 260}); hurricanesInfobox.push(infobox1);*/ // pinCollection['hurricanes'].push(pin); }); map.entities.push(hurricaneslines); // map.entities.push(pinCollection['hurricanes']); // map.entities.push(hurricanesInfobox); } function displayHurricaneMarker(e) { var polyline = e.target; //map.getRootElement().style.cursor = 'crosshair'; //var index = hurricaneslines.indexOf(polyline); //var infobox = hurricanesInfobox[index]; var point = new Microsoft.Maps.Point(e.getX(), e.getY()); var loc = map.tryPixelToLocation(point); var location = new Microsoft.Maps.Location(loc.latitude, loc.longitude, 0); //console.log(polygon); popuptxt = e.target.metadata.description; if (popuptxt != null) popuptxt = popuptxt.replace("<![CDATA[", "").replace("]]>", ""); var htmlContent = pushpinFrameHTML.replace('{content}', popuptxt); htmlContent = htmlContent.replace('

', '

'); infobox.setOptions({ location: e.location, htmlContent: htmlContent, visible: true }); var xbuffer = 10; var ybuffer = 10; var yOffset = 50; var xOffset = 10; var infobox_width = 265; var infoboxOffset = infobox.getOffset(); var infoboxAnchor = infobox.getAnchor(); var infoboxLocation = map.tryLocationToPixel(new Microsoft.Maps.Location(loc.latitude, loc.longitude, 0), Microsoft.Maps.PixelReference.control); var map_width = map.getWidth(); var map_height = map.getHeight(); var infobox_height = 200; // var infobox_height = $('.infobox').height(); //pinInfobox.getHeight() returns bogus values, using this jquery instead // infobox_width = $('.infobox').width(); var infobox_left_corner = infoboxLocation.x; var infobox_top_corner = infoboxLocation.y; var infobox_top_corner_offset = map_height - infobox_top_corner + 40; console.log(infobox_top_corner_offset + "===>" + infobox_height + "==>" + map_height); if ((infobox_left_corner + infobox_width) > map_width) xOffset = (map_width - (infobox_width + infobox_left_corner) - xbuffer); if ((infobox_top_corner_offset + infobox_height) > map_height || infobox_top_corner_offset > 460) { console.log(infobox_top_corner_offset + "===>" + infobox_height + "==>" + map_height); yOffset = (infobox_top_corner - infobox_height) - ybuffer; } // infobox._offset.x = xOffset; // infobox._offset.y = yOffset; //infobox.setLocation(location); strokecolor = new Microsoft.Maps.Color(100, 81, 81, 81); polyline.setOptions({strokeColor: strokecolor}); infobox.setOptions({offset: new Microsoft.Maps.Point(xOffset, yOffset)}); infobox.setOptions({visible: true}); //alert('show'); //console.log(index); //console.log(infobox); } function hideHurricaneMarker(e) { var polyline = e.target; var index = hurricaneslines.indexOf(polyline); //var tinfobox = hurricanesInfobox[index]; strokecolor = Microsoft.Maps.Color.fromHex(hurricaneScale[polyline.risklevel]); polyline.setOptions({strokeColor: strokecolor}); //pinInfobox.setOptions({visible: false}); infobox.setOptions({visible: false}); } function loadBoundaries(placemark) { //console.log(pinType);exit; map.entities.remove(boundaryPolygons); boundaryPolygons.clear(); fillcolor = new Microsoft.Maps.Color(0, 238, 210, 153); strokecolor = new Microsoft.Maps.Color(255, 51, 111, 162); strokethickness = 2; strokedasharray = "15 3"; if (placemark !== null && placemark.length > 0) { $.each(placemark, function (key, placemarker) { vertices = getVertices(placemarker); var polygon = new Microsoft.Maps.Polygon(vertices, {fillColor: fillcolor, strokeColor: strokecolor, strokeThickness: strokethickness, strokeDashArray: strokedasharray, zindex: 10}); boundaryPolygons.push(polygon); }); map.entities.push(boundaryPolygons); boundaryPolygons.setOptions({zIndex: 10}); } } function getVertices(coordinates) { var msLocations = []; var first = coordinates[0]; var last = coordinates[coordinates.length - 1]; //console.log(coordinates);exit; for (i = 0; i < coordinates.length; i++) { var coordinate = coordinates[i]; var xyz = coordinate.split(','); var location = new Microsoft.Maps.Location(xyz[1], xyz[0], 0); msLocations.push(location); } if (first != last) { var coordinate = coordinates[0]; var xyz = coordinate.split(','); var location = new Microsoft.Maps.Location(xyz[1], xyz[0], 0); msLocations.push(location); } return msLocations; } $(document).ready(function() { $('#hurricanes_year_homepage').on('change',function(){ hurricaneYear = $('#hurricanes_year_homepage').val(); //console.log(hurricaneYear); initialize_hurricane(); }); $('#hurricanes_year_state').on('change',function(){ hurricaneYear = $('#hurricanes_year_state').val(); //console.log(hurricaneYear); initialize_hurricane(); }); $('#hurricanes_year_city').on('change',function(){ hurricaneYear = $('#hurricanes_year_city').val(); map.entities.clear(); initialize_hurricane(); }); });

HURRICANE RISK

Total Hurricanes Since 1930*:

37

Hurricane Records*:

  • Most Recent: Don 7/30/2011
  • Highest Wind: Alice 95 knots
  • Highest Pressure: Unnamed 0 bars

*Within 150 miles radius

Major Hurricanes And Storms To Hit Brownsville, TX (within 150 miles)

Name

Start Date

End Date

Landfall

Max Status

Max Wind (Knots)

Max Pressure (Bars)

Don

7/27/2011

7/30/2011

7/30/2011

TS

45

1009

Hermine

9/4/2010

9/10/2010

9/7/2010

TS

60

1006

Two

7/7/2010

7/10/2010

7/8/2010

TD

30

1010

Dolly

7/20/2008

7/27/2008

7/23/2008

HU

85

1016

Emily

7/11/2005

7/21/2005

7/20/2005

HU

140

1010

Erika

8/14/2003

8/17/2003

8/16/2003

HU

65

1011

Bertha

8/4/2002

8/9/2002

8/9/2002

TS

35

1013

Bret

8/18/1999

8/25/1999

8/23/1999

HU

125

1010

Arlene

6/18/1993

6/21/1993

6/20/1993

TS

35

1006

Cosme

6/18/1989

6/23/1989

6/22/1989

HU

75

1009

Unnamed

8/4/1986

8/5/1986

-

TD

30

Barry

8/23/1983

8/29/1983

8/28/1983

HU

70

1014

Unnamed

6/3/1981

6/5/1981

-

TD

30

Unnamed

8/26/1981

8/29/1981

-

TD

30

Unnamed

7/25/1981

7/26/1981

-

TD

30

Allen

7/31/1980

8/11/1980

-

HU

165

1010

Unnamed

8/25/1979

8/28/1979

-

TD

30

Amelia

7/30/1978

8/1/1978

-

TS

45

1010

Caroline

8/24/1975

9/1/1975

-

HU

100

1014

Fern

9/3/1971

9/13/1971

-

HU

80

1000

Edith

9/5/1971

9/18/1971

-

HU

140

1010

Unnamed

7/10/1971

7/11/1971

-

TD

25

Unnamed

9/16/1969

9/20/1969

-

TD

25

Candy

6/22/1968

6/26/1968

-

TS

60

1001

Beulah

9/5/1967

9/22/1967

-

HU

140

1010

Unnamed

6/22/1960

6/28/1960

6/24/1960

TS

50

1013

Gerda

9/14/1958

9/22/1958

9/20/1958

TS

50

1004

Alma

6/14/1958

6/16/1958

6/15/1958

TS

55

Alice

6/24/1954

6/27/1954

6/25/1954

HU

95

Unnamed

7/31/1947

8/2/1947

8/2/1947

TS

45

Unnamed

7/19/1945

7/22/1945

-

TS

35

Unnamed

8/24/1945

8/29/1945

8/27/1945

HU

100

1009

Unnamed

8/18/1944

8/23/1944

-

TS

50

Unnamed

9/9/1936

9/14/1936

-

TS

45

1001

Unnamed

8/22/1933

9/5/1933

9/5/1933

HU

140

954

Unnamed

7/24/1933

8/5/1933

7/30/1933

HU

80

988

Unnamed

6/24/1931

6/28/1931

6/27/1931

TS

45

Yearly Hurricane Records for Brownsville, TX

Risk Of Natural Disasters In Brownsville, TX

Earthquakes

Very Low Risk

Tornados

Low Risk

Cities With The Highest Risk Of Hurricane Damage
  • De Berry, TX
  • Diana, TX
  • Bolivar Peninsula, TX
  • Port Arthur, TX
  • Taylor Landing, TX
  • High Island, TX
  • Sabine Pass, TX
  • Nederland, TX
related pages
  • Earthquakes In Brownsville, TX
  • Tornados In Brownsville, TX

Copyright © 2024 Homefacts.com (TM) . All rights reserved.

Brownsville, TX - Hurricane Information & Risks (2024)
Top Articles
Latest Posts
Article information

Author: Lidia Grady

Last Updated:

Views: 6264

Rating: 4.4 / 5 (45 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Lidia Grady

Birthday: 1992-01-22

Address: Suite 493 356 Dale Fall, New Wanda, RI 52485

Phone: +29914464387516

Job: Customer Engineer

Hobby: Cryptography, Writing, Dowsing, Stand-up comedy, Calligraphy, Web surfing, Ghost hunting

Introduction: My name is Lidia Grady, I am a thankful, fine, glamorous, lucky, lively, pleasant, shiny person who loves writing and wants to share my knowledge and understanding with you.