Summerfield, FL - Hurricane Information & Risks (2024)

Home

»

Hurricanes

»Florida

»Marion County

»Summerfield

Summerfield, FL is in a very low risk hurricane zone. 72 hurricanes have been recorded in the Summerfield, FL since 1930. The largest hurricane was Unnamed in 1944. The most recent Summerfield, FL hurricane was Andrea in 2013.

View By Year

2013 Hurricane And Storm Summary

Hurricane Information For Summerfield, FL

Summerfield, FL - Hurricane Information & Risks (2)

'; var hurricaneYear = 2013; 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(29.008628, -82.034869), 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": "888131901", "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*:

72

Hurricane Records*:

  • Most Recent: Andrea 6/8/2013
  • Highest Wind: Unnamed 95 knots
  • Highest Pressure: Unnamed 0 bars

*Within 150 miles radius

Major Hurricanes And Storms To Hit Summerfield, FL (within 150 miles)

Name

Start Date

End Date

Landfall

Max Status

Max Wind (Knots)

Max Pressure (Bars)

Andrea

6/5/2013

6/8/2013

6/6/2013

TS

55

1006

Beryl

5/25/2012

6/2/2012

5/28/2012

TS

60

1010

Debby

6/23/2012

6/27/2012

6/26/2012

TS

55

1002

Fay

8/15/2008

8/28/2008

8/23/2008

TS

60

1011

Barry

5/31/2007

6/5/2007

6/2/2007

TS

50

1008

Tammy

10/5/2005

10/7/2005

10/5/2005

TS

45

1006

Frances

8/25/2004

9/10/2004

9/6/2004

HU

125

1009

Jeanne

9/13/2004

9/29/2004

9/26/2004

HU

105

1010

Charley

8/9/2004

8/15/2004

8/14/2004

HU

130

1018

Henri

9/3/2003

9/8/2003

9/6/2003

TS

50

1013

Gabrielle

9/11/2001

9/21/2001

9/14/2001

HU

70

1010

Leslie

10/4/2000

10/10/2000

-

EX

60

1012

Gordon

9/14/2000

9/21/2000

9/18/2000

HU

70

1011

Erin

7/31/1995

8/6/1995

8/3/1995

HU

85

1008

Jerry

8/22/1995

8/28/1995

8/23/1995

TS

35

1010

Gordon

11/8/1994

11/21/1994

11/21/1994

HU

75

1013

Unnamed

6/25/1992

6/26/1992

-

TD

30

1009

Ana

6/29/1991

7/5/1991

-

TS

45

1012

Marco

10/9/1990

10/13/1990

-

TS

55

1007

Keith

11/17/1988

11/26/1988

11/23/1988

EX

65

1008

Unnamed

10/31/1987

11/4/1987

-

TD

30

Unnamed

6/11/1984

6/14/1984

-

TD

30

Isidore

9/25/1984

10/1/1984

-

TS

50

1012

Unnamed

6/18/1982

6/20/1982

-

EX

60

1004

Unnamed

7/2/1981

7/4/1981

-

TD

30

Dennis

8/7/1981

8/22/1981

-

HU

70

1011

Unnamed

7/17/1980

7/21/1980

-

TD

25

Unnamed

11/12/1980

11/18/1980

-

TD

30

David

8/25/1979

9/8/1979

-

HU

150

1008

Unnamed

9/13/1976

9/17/1976

-

SS

40

1017

Unnamed

9/23/1974

9/27/1974

-

TD

30

6/24/1974

6/26/1974

-

SS

55

1004

Unnamed

9/24/1973

9/26/1973

-

TD

25

Unnamed

8/12/1971

8/16/1971

-

TD

25

Unnamed

8/5/1970

8/7/1970

-

TD

25

Alma

5/17/1970

5/27/1970

-

HU

70

1008

Unnamed

8/29/1969

9/1/1969

-

TD

25

Jenny

10/1/1969

10/6/1969

-

TS

40

1000

Unnamed

8/26/1968

9/1/1968

-

TD

25

Abby

6/1/1968

6/13/1968

-

HU

65

1005

Brenda

6/17/1968

6/26/1968

-

HU

65

1012

Gladys

10/13/1968

10/21/1968

-

HU

75

1003

Unnamed

6/2/1964

6/11/1964

-

TS

50

Cleo

8/20/1964

9/5/1964

-

HU

135

1003

Dora

8/28/1964

9/16/1964

-

HU

115

998

Donna

8/29/1960

9/14/1960

9/12/1960

HU

125

973

Florence

9/17/1960

9/26/1960

9/19/1960

TS

50

1006

Unnamed

6/18/1959

6/22/1959

6/18/1959

EX

75

1002

Unnamed

10/14/1956

10/19/1956

10/15/1956

TS

55

999

Unnamed

9/15/1953

9/21/1953

9/20/1953

TS

45

1004

King

10/13/1950

10/20/1950

10/18/1950

HU

115

1002

Love

10/18/1950

10/22/1950

10/21/1950

HU

70

991

Easy

9/1/1950

9/9/1950

9/6/1950

HU

105

996

Unnamed

8/23/1949

9/1/1949

8/26/1949

HU

115

1002

Unnamed

9/20/1947

9/26/1947

9/23/1947

TS

55

994

Unnamed

10/5/1946

10/14/1946

10/8/1946

HU

85

993

Unnamed

10/31/1946

11/3/1946

11/1/1946

TS

40

1002

Unnamed

9/12/1945

9/20/1945

9/17/1945

HU

115

1012

Unnamed

6/20/1945

7/4/1945

6/26/1945

HU

85

Unnamed

10/12/1944

10/24/1944

10/19/1944

HU

125

996

Unnamed

10/15/1941

10/22/1941

10/20/1941

TS

45

1004

Unnamed

8/3/1940

8/10/1940

8/7/1940

HU

85

995

Unnamed

8/7/1939

8/19/1939

8/13/1939

HU

65

985

Unnamed

8/24/1937

9/2/1937

8/30/1937

TS

60

Unnamed

9/16/1937

9/21/1937

9/20/1937

TS

50

1002

Unnamed

7/29/1937

8/2/1937

7/29/1937

EX

60

997

Unnamed

8/20/1936

8/23/1936

8/21/1936

TS

50

Unnamed

8/29/1935

9/10/1935

9/4/1935

HU

160

996

Unnamed

7/22/1934

7/26/1934

7/25/1934

HU

75

979

Unnamed

8/31/1933

9/7/1933

9/5/1933

HU

120

948

Unnamed

8/29/1930

9/17/1930

9/9/1930

HU

135

933

Yearly Hurricane Records for Summerfield, FL

Risk Of Natural Disasters In Summerfield, FL

Earthquakes

Very Low Risk

Tornados

High Risk

Cities With The Highest Risk Of Hurricane Damage
  • Palm Beach, FL
  • Westgate, FL
  • Haverhill, FL
  • Lake Belvedere Estates, FL
  • Cloud Lake, FL
  • Glen Ridge, FL
  • Gun Club Estates, FL
  • Royal Palm Estates, FL
related pages
  • Earthquakes In Summerfield, FL
  • Tornados In Summerfield, FL

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

Summerfield, FL - Hurricane Information & Risks (2024)
Top Articles
Latest Posts
Article information

Author: Rueben Jacobs

Last Updated:

Views: 6139

Rating: 4.7 / 5 (57 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Rueben Jacobs

Birthday: 1999-03-14

Address: 951 Caterina Walk, Schambergerside, CA 67667-0896

Phone: +6881806848632

Job: Internal Education Planner

Hobby: Candle making, Cabaret, Poi, Gambling, Rock climbing, Wood carving, Computer programming

Introduction: My name is Rueben Jacobs, I am a cooperative, beautiful, kind, comfortable, glamorous, open, magnificent person who loves writing and wants to share my knowledge and understanding with you.