############# Storm Reports ############# ======== Overview ======== Request Types ------------- This portion of the API concerns storm reports, which are point data affecting a geographic region (defined by an extent) or proximity around a location (defined by a point and radius). For convenience, the most frequent report types are grouped into categories and may be requested as such. A request listing the categories is also available. .. _storm_report_parameters: Request Parameters ------------------ Storm report requests allow for additional parameters beyond those specified by the :ref:`request_format`. * **OPTIONAL**: A boolean indicator (*comments*) that storm report comments should be included in the response. Comments provide additional information about the storm report if reported to the National Weather Service at the time the report was made, typically involving details about the location and/or duration of the event. Comments are omitted unless this parameter is present and set to either ``true`` or ``1``. * **OPTIONAL** (proximity requests only): A radius in statute miles or kilometers (*radius*) around the given location defining a search area for storm reports included in the response. If unspecified, *radius* defaults to 1. The maximum allowed radius is 20 statute miles. * **OPTIONAL** (proximity requests only): A unit designator (*units*) for interpretation of the radius as well as the distance included in the response. Accepted values are ``miles`` or ``km``. If unspecified, *units* defaults to statute miles. Response Content ---------------- The following fields are included in each representation of a storm report: * **id** (string) * **report date** (`RFC 3339`_ string) * **event date** (`RFC 3339`_ string) * **type** (string): "avalanche", "blizzard", "coastal flood", "debris flow", "dense fog", "downburst", "drought", "dust storm", "excessive heat", "extr wind chill", "extreme cold", "flash flood", "flood", "freeze", "freezing rain", "funnel cloud", "hail", "heavy rain", "heavy snow", "high astr tides", "high sust winds", "hurricane", "ice storm", "lakeshore flood", "lightning", "marine hail", "marine tstm wind", "non-tstm wnd dmg", "non-tstm wnd gst", "rain", "rip currents", "seiche", "sleet", "sneaker wave", "snow", "storm surge", "tornado", "tropical storm", "tstm wnd dmg", "tstm wnd gst", "tsunami", "volcanic ashfall" "water spout", "wildfire", "wind", etc. * **location** * **description** (string) * **county** (string) * **state** (string) * **lat/lon** (`ISO 6709`_ string) * **magnitude** * **unit** (string): "F" or "EF" (tornado scale), "inches", "mph", or "ft" * **value** (decimal) * **method** (string): "measured", "estimated", or "unknown" * **comments** (string): additional information about the report, provided only if the *comments* keyword is present and set to ``true`` or ``1`` in the *parameters* * **source** (string): "911 center", "airplane pilot", "amateur radio", "asos", "awos", "broadcast media", "coast guard", "cocorahs", "co-op observer", "county official", "dept of highways", "emergency mngr", "fire dept/rescue", "insurance co", "law enforcement", "mesonet", "newspaper", "nws employee", "nws storm survey", "official nws obs", "ok highway ptrl", "other federal", "park/forest srvc", "post office", "public", "ship", "skywarn spotter", "state police", "storm chaser", "trained spotter", "unknown", "utility company", etc. * **site** (string): forecast office issuing the report ==================== Reports By Proximity ==================== This request returns the storm reports impacting the proximity around a specific location within a date range (the last 24 hours by default). Results are returned as `GeoJSON`_, `KML`_, or `XML`_. No transitions are available from the response. An empty list (feature collection) is returned if there are no reports. URI Examples ------------ :: forensic.api.wdtinc.com/v2/stormreports/+DD.ddd-DDD.ddd?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/+DD.ddd-DDD.ddd.kml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/+DD.ddd-DDD.ddd.xml?radius=&units=&begin=&end=&u=&t= See prior sections for a description of the :ref:`request_format` and :ref:`storm_report_parameters`. .. rst-class:: html-toggle GeoJSON Response ---------------- The GeoJSON representation of the resource is structured as follows. The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. :: { "apiVersion": "2.5.8", "stormReports": { "dateRange": { "begin": "YYYY-MM-DDThh:mm:ssZ", "end": "YYYY-MM-DDThh:mm:ssZ" }, "features": [ { "geometry": { "coordinates": [ -84.930000000000007, 38.079999999999998 ], "type": "Point" }, "properties": { "comments": "", "eventDate": "YYYY-MM-DDThh:mm:ssZ", "id": "", "location": { "county": "", "description": "", "latLon": "+DD.ddd-DDD.ddd", "state": "" }, "magnitude": { "unit": "", "value": DD.dd }, "method": "", "proximity": { "bearing": { "unit": "degrees from north", "value": DD.dd }, "distance": { "unit": "", "value": DD.dd } }, "reportDate": "YYYY-MM-DDThh:mm:ssZ", "site": "", "source": "", "type": "" }, "type": "Feature" }, { "geometry": { "coordinates": [ -84.930000000000007, 38.079999999999998 ], "type": "Point" }, "properties": { "comments": "", "eventDate": "YYYY-MM-DDThh:mm:ssZ", "id": "", "location": { "county": "", "description": "", "latLon": "+DD.ddd-DDD.ddd", "state": "" }, "magnitude": { "unit": "", "value": DD.dd }, "method": "", "proximity": { "bearing": { "unit": "degrees from north", "value": DD.dd }, "distance": { "unit": "", "value": DD.dd } }, "reportDate": "YYYY-MM-DDThh:mm:ssZ", "site": "", "source": "", "type": "" }, "type": "Feature" }, : : ], "location": "+DD.ddd-DDD.ddd", "radius": { "unit": "miles", "value": DD.dd }, "selfLink": "/v2/stormreports/categories/hail/+DD.ddd-DDD.ddd?radius=&units=&begin=&end=&u=&t=", "type": "FeatureCollection" } } .. rst-class:: html-toggle KML Response ------------ The KML representation of the resource is structured as follows. The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. .. code-block:: xml Storm Reports /v2/stormreports/+DD.ddd-DDD.ddd?radius=&units=&begin=&end=&u=&t= YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd DD.ddd miles id YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ degrees from north -91.95,39.5024 id YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ degrees from north -91.95,39.5024 : : .. rst-class:: html-toggle XML Response ------------ The XML representation of the resource is structured as follows (based on Google's `XML style guide`_). The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. .. code-block:: xml +DD.ddd-DDD.ddd DD.ddd YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd DD.dd DD.dd DD.dd YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd DD.dd DD.dd DD.dd : : ================= Reports By Region ================= This request returns the storm reports impacting a given region within a date range (the last 24 hours by default). Results are returned as `GeoJSON`_, `KML`_, or `XML`_. No transitions are available from the response. An empty list (feature collection) is returned if there are no reports. URI Examples ------------ :: forensic.api.wdtinc.com/v2/stormreports/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.kml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.xml?begin=&end=&u=&t= See prior sections for a description of the :ref:`request_format` and :ref:`storm_report_parameters`. .. rst-class:: html-toggle GeoJSON Response ---------------- The GeoJSON representation of the resource is structured as follows. The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. :: { "apiVersion": "2.5.8", "stormReports": { "dateRange": { "begin": "YYYY-MM-DDThh:mm:ssZ", "end": "YYYY-MM-DDThh:mm:ssZ" }, "features": [ { "geometry": { "coordinates": [ -84.930000000000007, 38.079999999999998 ], "type": "Point" }, "properties": { "comments": "", "eventDate": "YYYY-MM-DDThh:mm:ssZ", "id": "", "location": { "county": "", "description": "", "latLon": "+DD.ddd-DDD.ddd", "state": "" }, "magnitude": { "unit": "", "value": DD.dd }, "method": "", "reportDate": "YYYY-MM-DDThh:mm:ssZ", "site": "", "source": "", "type": "" }, "type": "Feature" }, { "geometry": { "coordinates": [ -84.930000000000007, 38.079999999999998 ], "type": "Point" }, "properties": { "comments": "", "eventDate": "YYYY-MM-DDThh:mm:ssZ", "id": "", "location": { "county": "", "description": "", "latLon": "+DD.ddd-DDD.ddd", "state": "" }, "magnitude": { "unit": "", "value": DD.dd }, "method": "", "reportDate": "YYYY-MM-DDThh:mm:ssZ", "site": "", "source": "", "type": "" }, "type": "Feature" }, : : ], "region": "+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd", "selfLink": "/v2/stormreports/categories/hail/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd?begin=&end=&u=&t=", "type": "FeatureCollection" } } .. rst-class:: html-toggle KML Response ------------ The KML representation of the resource is structured as follows. The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. .. code-block:: xml Storm Reports /v2/stormreports/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd?begin=&end=&u=&t= YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd+DD.ddd-DDD.ddd id YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ -91.95,39.5024 id YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ -91.95,39.5024 : : .. rst-class:: html-toggle XML Response ------------ The XML representation of the resource is structured as follows (based on Google's `XML style guide`_). The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. .. code-block:: xml +DD.ddd-DDD.ddd+DD.ddd-DDD.ddd YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd DD.dd YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd DD.dd : : ================= Report Categories ================= This request returns a list of available storm report categories and the specific types occurring in each category. Results are returned as `JSON`_ or `XML`_. No transitions are available from the response. URI Examples ------------ :: forensic.api.wdtinc.com/v2/stormreports/categories?u=&t= forensic.api.wdtinc.com/v2/stormreports/categories.xml?u=&t= See prior sections for a description of the :ref:`request_format` and :ref:`storm_report_parameters`. Category Summary ---------------- The following table summarizes the result of the categories request: +-----------------------+-----------------------------+ | Storm Report Category | Storm Report Types | +=======================+=============================+ | flood | flood, flash flood, coastal | | | flood, lakeshore flood | +-----------------------+-----------------------------+ | hail | hail, marine hail | +-----------------------+-----------------------------+ | tornado | tornado, funnel cloud, | | | water spout | +-----------------------+-----------------------------+ | tropical | hurricane, tropical storm, | | | storm surge | +-----------------------+-----------------------------+ | wind | wind, high sust winds, tstm | | | wnd dmg, tstm wnd gust, | | | non-tstm wnd gust, non-tstm | | | wnd dmg, marine tstm wind, | | | downburst | +-----------------------+-----------------------------+ | winter | snow, heavy snow, blizzard, | | | freezing rain, sleet, | | | ice storm | +-----------------------+-----------------------------+ ================================ Categorical Reports By Proximity ================================ This request returns the storm reports in a specific category impacting the proximity around a specific location within a date range (the last 24 hours by default). Results are returned as `GeoJSON`_, `KML`_, or `XML`_. No transitions are available from the response. An empty list (feature collection) is returned if there are no reports. URI Examples ------------ :: forensic.api.wdtinc.com/v2/stormreports/categories/flood/+DD.ddd-DDD.ddd?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/flood/+DD.ddd-DDD.ddd.kml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/flood/+DD.ddd-DDD.ddd.xml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/hail/+DD.ddd-DDD.ddd?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/hail/+DD.ddd-DDD.ddd.kml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/hail/+DD.ddd-DDD.ddd.xml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tornado/+DD.ddd-DDD.ddd?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tornado/+DD.ddd-DDD.ddd.kml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tornado/+DD.ddd-DDD.ddd.xml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tropical/+DD.ddd-DDD.ddd?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tropical/+DD.ddd-DDD.ddd.kml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tropical/+DD.ddd-DDD.ddd.xml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/wind/+DD.ddd-DDD.ddd?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/wind/+DD.ddd-DDD.ddd.kml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/wind/+DD.ddd-DDD.ddd.xml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/winter/+DD.ddd-DDD.ddd?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/winter/+DD.ddd-DDD.ddd.kml?radius=&units=&begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/winter/+DD.ddd-DDD.ddd.xml?radius=&units=&begin=&end=&u=&t= See prior sections for a description of the :ref:`request_format` and :ref:`storm_report_parameters`. .. rst-class:: html-toggle GeoJSON Response ---------------- The GeoJSON representation of the resource is structured as follows. The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. :: { "apiVersion": "2.5.8", "stormReports": { "dateRange": { "begin": "YYYY-MM-DDThh:mm:ssZ", "end": "YYYY-MM-DDThh:mm:ssZ" }, "features": [ { "geometry": { "coordinates": [ -84.930000000000007, 38.079999999999998 ], "type": "Point" }, "properties": { "comments": "", "eventDate": "YYYY-MM-DDThh:mm:ssZ", "id": "", "location": { "county": "", "description": "", "latLon": "+DD.ddd-DDD.ddd", "state": "" }, "magnitude": { "unit": "", "value": DD.dd }, "method": "", "proximity": { "bearing": { "unit": "degrees from north", "value": DD.dd }, "distance": { "unit": "", "value": DD.dd } }, "reportDate": "YYYY-MM-DDThh:mm:ssZ", "site": "", "source": "", "type": "" }, "type": "Feature" }, { "geometry": { "coordinates": [ -84.930000000000007, 38.079999999999998 ], "type": "Point" }, "properties": { "comments": "", "eventDate": "YYYY-MM-DDThh:mm:ssZ", "id": "", "location": { "county": "", "description": "", "latLon": "+DD.ddd-DDD.ddd", "state": "" }, "magnitude": { "unit": "", "value": DD.dd }, "method": "", "proximity": { "bearing": { "unit": "degrees from north", "value": DD.dd }, "distance": { "unit": "", "value": DD.dd } }, "reportDate": "YYYY-MM-DDThh:mm:ssZ", "site": "", "source": "", "type": "" }, "type": "Feature" }, : : ], "location": "+DD.ddd-DDD.ddd", "radius": { "unit": "miles", "value": DD.dd }, "selfLink": "/v2/stormreports/categories/hail/+DD.ddd-DDD.ddd?radius=&units=&begin=&end=&u=&t=", "type": "FeatureCollection" } } .. rst-class:: html-toggle KML Response ------------ The KML representation of the resource is structured as follows. The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. .. code-block:: xml Storm Reports /v2/stormreports/categories/category/+DD.ddd-DDD.ddd?radius=&units=&begin=&end=&u=&t= YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd DD.ddd miles id YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ degrees from north -91.95,39.5024 id YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ degrees from north -91.95,39.5024 : : .. rst-class:: html-toggle XML Response ------------ The XML representation of the resource is structured as follows (based on Google's `XML style guide`_). The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. .. code-block:: xml +DD.ddd-DDD.ddd DD.ddd YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd DD.dd DD.dd DD.dd YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd DD.dd DD.dd DD.dd : : ============================= Categorical Reports By Region ============================= This request returns the storm reports in a specific category impacting a given region within a date range (the last 24 hours by default). Results are returned as `GeoJSON`_, `KML`_, or `XML`_. No transitions are available from the response. An empty list (feature collection) is returned if there are no reports. URI Examples ------------ :: forensic.api.wdtinc.com/v2/stormreports/categories/flood/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/flood/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.kml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/flood/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.xml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/hail/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/hail/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.kml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/hail/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.xml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tornado/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tornado/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.kml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tornado/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.xml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tropical/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tropical/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.kml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/tropical/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.xml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/wind/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/wind/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.kml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/wind/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.xml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/winter/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/winter/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.kml?begin=&end=&u=&t= forensic.api.wdtinc.com/v2/stormreports/categories/winter/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd.xml?begin=&end=&u=&t= See prior sections for a description of the :ref:`request_format` and :ref:`storm_report_parameters`. .. rst-class:: html-toggle GeoJSON Response ---------------- The GeoJSON representation of the resource is structured as follows. The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. :: { "apiVersion": "2.5.8", "stormReports": { "dateRange": { "begin": "YYYY-MM-DDThh:mm:ssZ", "end": "YYYY-MM-DDThh:mm:ssZ" }, "features": [ { "geometry": { "coordinates": [ -84.930000000000007, 38.079999999999998 ], "type": "Point" }, "properties": { "comments": "", "eventDate": "YYYY-MM-DDThh:mm:ssZ", "id": "", "location": { "county": "", "description": "", "latLon": "+DD.ddd-DDD.ddd", "state": "" }, "magnitude": { "unit": "", "value": DD.dd }, "method": "", "reportDate": "YYYY-MM-DDThh:mm:ssZ", "site": "", "source": "", "type": "" }, "type": "Feature" }, { "geometry": { "coordinates": [ -84.930000000000007, 38.079999999999998 ], "type": "Point" }, "properties": { "comments": "", "eventDate": "YYYY-MM-DDThh:mm:ssZ", "id": "", "location": { "county": "", "description": "", "latLon": "+DD.ddd-DDD.ddd", "state": "" }, "magnitude": { "unit": "", "value": DD.dd }, "method": "", "reportDate": "YYYY-MM-DDThh:mm:ssZ", "site": "", "source": "", "type": "" }, "type": "Feature" }, : : ], "region": "+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd", "selfLink": "/v2/stormreports/categories/hail/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd?begin=&end=&u=&t=", "type": "FeatureCollection" } } .. rst-class:: html-toggle KML Response ------------ The KML representation of the resource is structured as follows. The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. .. code-block:: xml Storm Reports /v2/stormreports/categories/category/+DD.ddd-DDD.ddd+DD.ddd-DDD.ddd?begin=&end=&u=&t= YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd+DD.ddd-DDD.ddd id YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ -91.95,39.5024 id YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ -91.95,39.5024 : : .. rst-class:: html-toggle XML Response ------------ The XML representation of the resource is structured as follows (based on Google's `XML style guide`_). The comments property is omitted unless the keyword ``comments=true`` or ``comments=1`` is provided in the `request parameters`_. .. code-block:: xml +DD.ddd-DDD.ddd+DD.ddd-DDD.ddd YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd DD.dd YYYY-MM-DDThh:mm:ssZ YYYY-MM-DDThh:mm:ssZ +DD.ddd-DDD.ddd DD.dd : : .. _`GeoJSON`: http://en.wikipedia.org/wiki/GeoJSON .. _`ISO 6709`: http://en.wikipedia.org/wiki/ISO_6709 .. _`JSON`: http://en.wikipedia.org/wiki/JSON .. _`KML`: https://developers.google.com/kml/documentation/ .. _`RFC 3339`: http://www.ietf.org/rfc/rfc3339.txt .. _`XML`: http://en.wikipedia.org/wiki/XML .. _`XML style guide`: http://google-styleguide.googlecode.com/svn/trunk/xmlstyle.html