<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:admin="http://webns.net/mvcb/"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:atom="http://www.w3.org/2005/Atom">

	<channel>
	<atom:link href="http://www.hamweather.com/blog/rss" rel="self" type="application/rss+xml" />

	<title>HAMweather Blog</title>
	<link>http://www.hamweather.com/blog/rss</link>
	<description></description>
	<dc:language>en</dc:language>
	<dc:creator>nshipes@weathernation.net</dc:creator>
	<dc:rights>Copyright 2012</dc:rights>
	<pubDate>Wed, 08 Feb 2012 22:30:03 GMT</pubDate>
	<admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

	<item>
		<title>Aeris Web: JavaScript SDK Preview</title>
		<link>/blog/aeris-web-javascript-sdk-preview</link>
		<guid isPermalink="false">/blog/aeris-web-javascript-sdk-preview#When:22:30Z</guid>
		<description><![CDATA[<p>
	Over the past few weeks, we&rsquo;ve been actively working on the first component to Aeris Web -- the JavaScript SDK. We are continuing to test and wrap up all items required for our version 1.0 slated for release within a couple of weeks, but we wanted to provide a preview of how easy it will be to incorporate your Aeris API subscription into your custom web applications.</p>
<p>
	For instance, if you wanted to fetch the latest weather observations for Seattle, WA, you would just need to use the following snippet once you have initialized the Aeris JS SDK with your access information:</p>
<pre>
<code>&#10;var obs = new Aeris.collections.Observations();&#10;obs.bind(&#39;load&#39;, function(collection)&#123;&#10;&#9;var model = collection.at(0);&#10;&#9;alert(&#39;Currently in Seattle it is &#39; + model.get(&#39;ob.tempF&#39;) + &#39; degrees.&#39;);&#10;&#125;);&#10;obs.fetch(&#39;seattle,wa&#39;);&#10;</code></pre>
<p>
	The same properties from the core data API are also used in the JavaScript SDK, so switching between the two formats is straightforward.</p>
<p>
	<strong>Built-In Widgets</strong><br />
	We will also be including a set of basic built-in JavaScript widgets that you can include in your application that are fully customizable using CSS and custom templates. The following is an example of using our built-in Advisories widget that loads advisories for Birmingham, AL and renders it to a &lt;div&gt; whose id is &ldquo;widget-advisories&rdquo;:</p>
<pre>
<code>&#10;var advisories = new Aeris.widgets.Advisories($(&#39;#widget-advisories&#39;), &#123;&#10;&#9;params: &#123;&#10;&#9;&#9;p: &#39;birmingham,al&#39;&#10;&#9;&#125;&#10;&#125;);&#10;</code></pre>
<p>
	All of our HTML templates are based on <a href="http://handlebarsjs.com/" target="_blank">Handlebars JS</a>, so it is very easy and quick to customize any of the built-in widgets or creating your own by extending our core objects.</p>
<p>
	Below are screenshots of some of the built-in widgets that will come with the Aeris JavaScript SDK.</p>
<p style="text-align: center;">
	<img alt="" src="/images/blog/aeris_js_preview_02.png" style="width: 560px; height: 226px;" /></p>
<p style="text-align: center;">
	<img alt="" src="/images/blog/aeris_js_preview_01.png" style="width: 560px; height: 463px;" /></p>
<p style="text-align: center;">
	&nbsp;</p>
<p>
	Our included widgets also support additional features, like displaying data based on the user&#39;s geolocation or allowing them to view the data for a particular location they can search for. Additionally, widgets can be configured to auto-refresh its data based on a specific time interval, so you can ensure your data is always up to date no matter how long the page is open or application running.</p>
<p style="text-align: center;">
	<img alt="" src="/images/blog/aeris_js_preview_tbar.png" style="width: 470px; height: 193px;" /></p>
<p>
	We will be posting additional updates as we get closer to the official release of version 1.0 of the JavaScript SDK.</p>
]]></description>
		<dc:subject>Aeris Web</dc:subject><dc:subject>News</dc:subject><dc:subject>What&apos;s New</dc:subject>
		<pubDate>Wed, 08 Feb 2012 22:30 GMT</pubDate>
	</item>

	<item>
		<title>Aeris API 1.0.6 and iOS Framework Updates</title>
		<link>/blog/aeris-api-106-and-ios-framework-updates</link>
		<guid isPermalink="false">/blog/aeris-api-106-and-ios-framework-updates#When:21:19Z</guid>
		<description><![CDATA[<p>
	This week we have pushed out updates to the Aeris Weather API and the iOS framework. We have also been busy wrapping up development for the initial release of the JavaScript toolkit coming soon.</p>
<p>
	The Aeris Weather API 1.0.6 update is a maintenance release that fixes several bugs and adds a few improvements. Most notably, updates to the storm cells endpoint and a new sortable date-time mapping for the storm reports, storm cells and fires endpoints. Additionally, a new &ldquo;skip&rdquo; parameter (currently in beta) was added which allows skipping over a specific number of results, which is useful when pagination is required. Review the <a href="http://www.hamweather.com/support/documentation/aeris/history/">version history</a> for a complete list of changes.</p>
<p>
	<br />
	<strong>Additions to the Storm Cells Endpoint</strong><br />
	The storm cells now include a place object that provides the closest city, state and country to the storm cell. Also, a new ob.location property has been added which provides the distance and bearing to the closest city, such as &ldquo;3 miles SSW of Mobile&rdquo;. This better aligns the storm cells endpoint with our standard output for other similar endpoints.</p>
<p>
	Additionally, new query mappings were added for the name and state of the closest city to the storm cell, which can be used to request all storm cells within a state:</p>
<p>
	For example, the following query will return up to 100 storm cells in the state of Alabama:<br />
	<code>/stormcells/search?query=state:al&amp;limit=100</code></p>
<p>
	The following will return up to 100 storm cells in the state of Alabama with a rotation signature:<br />
	<code>/stormcells/search?query=state:al&amp;filter=rotating&amp;limit=100</code></p>
<p>
	<strong>New sort mapping for Storm Reports</strong><br />
	We have added two new sort mappings for storm reports: &ldquo;dt&rdquo; and &ldquo;details&rdquo;. The new &ldquo;dt&rdquo; mapping allows sorting results based on the report date and time.</p>
<p>
	For example, the following query will return up to 50 storm reports in the state of Minnesota, sorted newest to oldest, over the past 7 days:<br />
	<code>/stormreports/search?query=state:mn&amp;sort=dt:-1&amp;from=-7days&amp;limit=50</code></p>
<p>
	Note: The &ldquo;dt&rdquo; mapping was also added to the stormcells and fires endpoints.</p>
<p>
	The new &ldquo;details&rdquo; mapping allows sorting results based on the measured value in the report, when available.</p>
<p>
	For example, the following would return the top 10 snow reports in Minnesota for the past week sorted by the amount of snow reported in descending order:<br />
	<code>/stormreports/search?query=state:mn&amp;sort=detail:-1&amp;filter=snow&amp;from=-7days&amp;limit=10</code></p>
<p>
	<br />
	<strong>Skip Parameter</strong><br />
	Although this feature is still in beta, we are also introducing the new &ldquo;skip&rdquo; parameter. This parameter can be used to skip a specified number of results, which when combined with the &ldquo;limit&rdquo; parameter can be useful in paging implementations.</p>
<p>
	For example, you may want to return 10 of the closest cities to Minneapolis sorted by descending distance but skip the first 10 results:</p>
<p>
	<code>/places/closest?p=minneapolis,mn&amp;skip=10&amp;limit=10</code></p>
<p>
	<br />
	<strong>Aeris iOS Framework Updates</strong><br />
	Our 1.0.3 release of the Aeris iOS framework is a maintenance release that fixes several bugs and brings the model properties up to date with the property changes recently made in the core API.</p>
<p>
	The biggest change resulted from a bug in which the date and times displayed in the sample application were not using the proper time zone of the actual location the data was for, but instead always falling back the time zone of the iOS device. Therefore, we have added a new `timeZone` property that stores an NSTimeZone instance for the time zone of data&rsquo;s location. This can then be passed to custom date formatters and calendars to get the correct day and time from the stored `timestamp` property (Note that all dates in iOS are stored in GMT). Refer to the <a href="http://www.hamweather.com/docs/ios/Aeris/">developer documentation</a> for the Aeris.framework for the full set of properties supported for each object.</p>
<p>
	Although new features have not been added in this update, support for batch processing and several new features are in the works will be coming very soon to the iOS framework. Refer to the <a href="http://www.hamweather.com/support/documentation/mobile/ios/history/">full version history</a> for the full list of changes in version 1.0.3.</p>
]]></description>
		<dc:subject>Aeris API</dc:subject><dc:subject>Aeris Mobile</dc:subject><dc:subject>General</dc:subject><dc:subject>News</dc:subject>
		<pubDate>Fri, 03 Feb 2012 21:19 GMT</pubDate>
	</item>

	<item>
		<title>Aeris API 1.0.5 Update</title>
		<link>/blog/aeris-api-105-update</link>
		<guid isPermalink="false">/blog/aeris-api-105-update#When:20:38Z</guid>
		<description><![CDATA[<p>
	We released version 1.0.5 of the Aeris Weather API which provides support for Canadian postal codes and several bug fixes. Review the <a href="http://www.hamweather.com/support/documentation/aeris/history/">version history</a> for a complete list of changes.</p>
<p>
	<strong>Canadian Postal Codes</strong><br />
	With this release, Canadian postal codes have been added to our supported place formats. When using postal codes, the space that occurs within the middle is optional, making "M3C 4H9" and "M3C4H9" equivalent.</p>
<p>
	An example of finding the place information for a postal code:<br />
	<code>/places/M3C4H9</code><br />
	<code>/places?p=M3C4H9</code><br />
	<code>/places?p=M3C%204H9</code></p>
<p>
	An example of finding the closest observation for a postal code:<br />
	<code>/observations/M3C4H9</code></p>
<p>
	<strong>Warnings</strong><br />
	We have introduced the concept of request warnings with this update. Request warnings will be issued in special cases, such as when a parameter is being used improperly or your request includes deprecated functionality or properties. In such cases, the API will still provide a successful response with data, but the error object will include a warning message.</p>
<!-- read_more -->
<p>
	For example, if you query the places endpoint with a coordinate that also includes a limit value greater than 1:<br />
	<code>/places/44.97,-93.27?limit=10</code></p>
<p>
	The response would look similar to:</p>
<pre>
<code>&#10;&#123;&#10;    success: true,&#10;    error: &#123;&#10;        code: "warn_invalid_param",&#10;        description: "The id action enforces a limit of 1"&#10;    &#125;,&#10;    response: &#123;&#10;        loc: &#123;&#10;            lat: 44.97997,&#10;            long: -93.26384&#10;        &#125;,&#10;        place: &#123;&#10;            name: "Minneapolis",&#10;            state: "MN",&#10;            stateFull: "Minnesota",&#10;            country: "US",&#10;            countryFull: "United States",&#10;            region: "usnc",&#10;            regionFull: "North Central",&#10;            continent: "nam",&#10;            continentFull: "North America"&#10;        &#125;,&#10;        profile: &#123;&#10;            elevM: 253,&#10;            elevFT: 830,&#10;            pop: 382578,&#10;            tz: "America/Chicago",&#10;            tzname: "CST",&#10;            tzoffset: -21600,&#10;            isDST: false&#10;        &#125;,&#10;        relativeTo: &#123;&#10;            lat: 44.97,&#10;            long: -93.27,&#10;            bearing: 24,&#10;            bearingENG: "NNE",&#10;            distanceKM: 1.21,&#10;            distanceMI: 0.752&#10;        &#125;&#10;    &#125;&#10;&#125;&#10;</code></pre>
<p>
	In this example, we were attempting to find the 10 closest locations to coordinate 44.97,-93.27 but with the <em>id</em> action. However, we should have used the <em>closest</em> action instead to take advantage of the <em>limit</em> parameter:<br />
	<code>/places/closest?p=44.97,-93.27&amp;limit=10</code></p>
]]></description>
		<dc:subject>Aeris API</dc:subject><dc:subject>General</dc:subject><dc:subject>News</dc:subject>
		<pubDate>Fri, 27 Jan 2012 20:38 GMT</pubDate>
	</item>

	<item>
		<title>Aeris API 1.0.3 Update</title>
		<link>/blog/aeris-api-103-update</link>
		<guid isPermalink="false">/blog/aeris-api-103-update#When:04:24Z</guid>
		<description><![CDATA[<p>
	Today we released version 1.0.3 of the Aeris Weather API. This release provides support for auto-complete style queries with the new &ldquo;starts with&rdquo; functionality as well as several other minor items. Additionally, with this release we added batch requests as a beta feature! Batch requests allow you to query multiple endpoints with a single request to the servers. Review the version history for a complete list of changes.</p>
<p>
	<large><strong>&ldquo;Starts With&rdquo; Query / Auto-Complete</strong></large><br />
	A common feature seen in many weather applications is the auto-complete style functionality that queries the server as a user is typing in a location name. Now with the new &ldquo;starts with&rdquo; query modifier, this can be accomplished easily. All that is needed is to precede the search string in the query with a caret (^) symbol.</p>
<p>
	An example of a query searching for words starting with &ldquo;minn&rdquo;:<br />
	<code>/places/search?query=name:^minn&amp;limit=10</code></p>
<p>
	The following uses the same above query but limits it to US locations only:<br />
	<code>/places/search?query=name:^minn,country:us&amp;limit=10</code></p>
<p>
	<large><strong>Batch Requests (Beta in v1.0.3 of the Aeris Weather API)</strong></large><br />
	We have received many praises and requests for the Aeris Weather API, the most common request being the ability to query multiple endpoints all within a single query.&nbsp; Our new batch request feature takes care of this for you without having to learn a new endpoint or request format. Please note that as of 1.0.3 we consider this a beta feature and a max of 5 endpoints can be performed per batch request.</p>
<p>
	See the batch request documentation for full usage. The following are the primary features:</p>
<p>
	The batch endpoint uses a requests parameter set to a string of comma-separated standard endpoint requests. Each endpoint request must include either an :action or :id and its own parameters (optional). If the main batch request uses an :id, then this ID will be automatically passed to each endpoint query.</p>
<p>
	Additionally, any other parameters passed to the batch request are considered global and passed to each individual endpoint requests found in the requests parameter. Note, however, that the parameters included within an individual endpoint request will override those same options found in the global parameters of the batch request. For example:</p>
<p>
	<code>/batch?limit=10&amp;requests=/observations/closest,/stormreports?limit=5,/fires/closest</code><br />
	In this batch request, the global option &ldquo;limit=10&rdquo; is used by the observations and the fires endpoints, but the stormreports endpoint overrides this with it&rsquo;s own &ldquo;limit=5&rdquo;</p>
<p>
	<strong>Use Case 1 - Fetch multiple data types for the same location:</strong><br />
	The is the simplest and most common use of a batch request:<br />
	<code>/batch/:id?requests=/:endpoint1,/:endpoint2,/:endpoint3</code></p>
<p>
	For example, to fetch the latest observation, daily forecast and active advisories for Minneapolis, MN:<br />
	<code>/batch/minneapolis,mn?requests=/observations,/forecasts,/advisories</code></p>
<p>
	Parameters can be passed to each individual endpoint as well. For example, to obtain the latest observation, the forecast in daily intervals, the forecast in hourly intervals and all active advisories, the batch request would be:<br />
	<code>/batch/minneapolis,mn?requests=/observations,/forecasts,/forecast?filter=6hr,/advisories?filter=all</code></p>
<p>
	<strong>Use Case 2 - Fetch data for multiple locations:</strong><br />
	To fetch the latest observations for Atlanta, Minneapolis and Seattle:<br />
	<code>/batch?requests=/observations/atlanta,ga,/observations/minneapolis,mn,/observations/seattle,wa</code></p>
<p>
	<strong>Use Case 3 - Fetch weather extremes:</strong><br />
	The following batch request is combined with the power of the query and sort parameters to return the warmest and coldest locations in the US based on their latest observations:<br />
	<code>/batch?limit=1&amp;query=country:us,temp:-999&amp;requests=/observations/search?sort=temp:-1,/observations/search?sort=temp</code></p>
<p>
	Here the &ldquo;query=country:us,temp:-999&rdquo; queries only observations in the US and only includes observations that have a valid temperature (observations that didn&rsquo;t report a temperature for a particular hour will have -999 as the temperature value, so we would want to eliminate those that didn&rsquo;t report).</p>
<p>
	Often during the winter months the warmest location in the US may be in Puerto Rico. So, adjust the query to eliminate locations in Puerto Rico to query only the 50 states:<br />
	<code>/batch?limit=1&amp;query=country:us,state:!pr,,temp:-999&amp;requests=/observations/search?sort=-1,/observations/search?sort=temp</code></p>
]]></description>
		<dc:subject>Aeris API</dc:subject><dc:subject>General</dc:subject><dc:subject>News</dc:subject>
		<pubDate>Thu, 12 Jan 2012 04:24 GMT</pubDate>
	</item>

	<item>
		<title>Aeris API 1.0.2 Update</title>
		<link>/blog/aeris-api-102-update</link>
		<guid isPermalink="false">/blog/aeris-api-102-update#When:23:07Z</guid>
		<description><![CDATA[<p>
	Today we released version 1.0.2 of&nbsp; the Aeris Weather API that provides some significant new capabilities, as well as several enhancements and bug fixes. The complete list of changes can be found in our <a href="http://www.hamweather.com/support/documentation/aeris/history/">version history</a>, though some of the more significant enhancements include:</p>
<p>
	<strong>Sorting</strong><br />
	Most APIs allow fetching of data, but leave sorting and filtering up to the developer to handle. With the Aeris API, we aim to simplify development by allowing the API to handle many of these features instead.</p>
<p>
	The new sort parameter allows making requests for data that is sorted by one or more elements from the data set. This feature allows fetching results presorted for easier processing and, when combined with the filter and query parameters, can obtain specific results that would normally not be readily available from a standard endpoint action.&nbsp;</p>
<p>
	Review the complete&nbsp;<a href="http://www.hamweather.com/support/documentation/aeris/sorting/">sorting documentation</a> for the full details and capabilities, but a few use cases where the new sort parameter would be useful include:</p>
<p>
	UC1 - Find the top 50 cities within the US based on population with the results sorted by descending population:<br />
	<code>http://api.aerisapi.com/places/search?query=country:us&amp;sort=pop:-1&amp;limit=50</code></p>
<p>
	UC2 - Obtain the warmest location in Minnesota based on latest observations:<br />
	<code>http://api.aerisapi.com/observations/search?query=state:mn&amp;sort=temp:-1</code></p>
<p>
	UC3 - Find flood-related advisories in Minnesota and Wisconsin sorted by state, significance and expiration time descending:<br />
	<code>http://api.aerisapi.com/advisories/search?query=state:mn,state:wi&amp;filter=flood&amp;sort=state,sigp,expires:-1&amp;limit=200</code></p>
<p>
	UC4 - Find the 10 closest weather observations to Minneapolis and sort the results based on descending temperature:<br />
	<code>http://api.aerisapi.com/observations/closest?p=minneapolis,mn&amp;radius=50miles&amp;limit=10&amp;sort=temp:-1</code></p>
<p>
	<strong>API Versions</strong><br />
	While we strive to test and to ensure backwards compatibility with each new release of the API, we understand there may be occasional needs to query a specific version of the API. We have now added the ability to query specific versions of the API, starting with version 1.0.1.</p>
<p>
	The standard query to obtain the latest observation for Minneapolis, MN using the latest version of the API would be:<br />
	<code>http://api.aerisapi.com/observations/minneapolis,mn</code></p>
<p>
	The same request but using version 1.0.1 instead would be:<br />
	<code>http://api.aerisapi.com/v1.0.1/observations/minneapolis,mn</code></p>
<p>
	If you provide an invalid version number, the latest stable version will always be used. While we offer this new capability, we recommend always using the latest stable release of the API within your custom applications.</p>
]]></description>
		<dc:subject>Aeris API</dc:subject><dc:subject>General</dc:subject><dc:subject>News</dc:subject>
		<pubDate>Thu, 05 Jan 2012 23:07 GMT</pubDate>
	</item>

	<item>
		<title>Aeris API 1.0.1 Update</title>
		<link>/blog/aeris-api-101-update</link>
		<guid isPermalink="false">/blog/aeris-api-101-update#When:22:04Z</guid>
		<description><![CDATA[<p>
	First off, we would like to say thanks for the tremendous enthusiasm and interest in our new Aeris product suite and the new site design. Over the coming weeks we will continue to expand Aeris with additional datasets, capabilities, JavaScript / PHP toolkits and more.</p>
<p>
	With that, today we released an update to the Aeris API that provided several bug fixes and added some enhanced capabilities. The complete list of changes is available in the <a href="http://www.hamweather.com/support/documentation/aeris/history/">version history</a>, though some of the major enhancements include:</p>
<p>
	<strong>Enhanced Location Support</strong></p>
<ul>
	<li>
		Complete US state names or Canadian province names may be used. For example:
		<ul>
			<li>
				/places/houston,texas</li>
			<li>
				/observations/toronto,ontario</li>
		</ul>
	</li>
	<li>
		<p>
			2 letter ISO country abbreviations, 3 letter ISO country abbreviations and full country names are now supported. For example:</p>
		<ul>
			<li>
				/observations/mexico+city,mx</li>
			<li>
				/observations/mexico+city,mex</li>
			<li>
				/observations/mexico+city,mexico</li>
		</ul>
	</li>
	<li>
		<p>
			The official country abbreviation for cities in the United Kingdom is &ldquo;GB&rdquo;, but since many users enter &ldquo;UK&rdquo; the api will now handle being passed &ldquo;UK&rdquo; in place of &ldquo;GB&rdquo;. Both of the following usages will work:</p>
		<ul>
			<li>
				/places/london,gb</li>
			<li>
				/places/london,uk<br />
				&nbsp;</li>
		</ul>
	</li>
</ul>
<p>
	<strong>New Countries Endpoint</strong></p>
<p>
	We added a new <em><strong>countries</strong></em> endpoint that allows requesting basic country information, such as full name, abbreviations, estimated populations and more. See the <a href="http://www.hamweather.com/support/documentation/aeris/endpoints/countries">countries endpoint docs</a> for more information.</p>
<p>
	&nbsp;</p>
]]></description>
		<dc:subject>Aeris API</dc:subject><dc:subject>General</dc:subject><dc:subject>News</dc:subject>
		<pubDate>Tue, 13 Dec 2011 22:04 GMT</pubDate>
	</item>

	<item>
		<title>New look, new products</title>
		<link>/blog/new-look-new-products</link>
		<guid isPermalink="false">/blog/new-look-new-products#When:22:51Z</guid>
		<description><![CDATA[<p>
	As you can tell, things have changed quite a bit with the site now that our much-needed site redesign has been completed and the switch has been flipped. Finally. Not only has the site changed, but our lines of <a href="http://www.hamweather.com/products/">products</a> and <a href="http://www.hamweather.com/services/">services</a> have also received a well-deserved overhaul. So let&rsquo;s get a little more familiar with the changes.</p>
<p>
	Our new site boasts a clean, fresh look better focused around our extensive line of products and services. <a href="http://www.hamweather.com/products/aeris-api/">Aeris</a> is our new core product, an API that provides the necessary weather data to power all of our other products and services.</p>
<p>
	Similar to the previous site, we still provide traditional weather content on our weather site, where you can view your local weather and sample our vast library of weather maps currently offered with our <a href="http://www.hamweather.com/products/aeris-graphics/">Aeris Graphics</a> product.</p>
<p>
	If you&rsquo;re looking for more customized solutions, we continue to offer our <a href="http://www.hamweather.com/services/professional/">professional services</a> to work one-on-one with your team to develop unique weather solutions. Services include custom web and mobile applications and specialized weather content and design, such as custom weather graphics, maps and custom branding strategies.</p>
<p>
	In the coming weeks, we will continue to provide additional content regarding our new products and services as we continue to receive feedback from our clients and users. We will also be communicating tips, tricks, videos and screencasts for Aeris and it&rsquo;s toolkits here on our developer blog.</p>
<p>
	In the meantime, you can communicate with us on <a href="http://twitter.com/hwaeris" target="_blank">Twitter</a> and subscribe to our blog&rsquo;s <a href="http://www.hamweather.com/blog/rss">RSS feed</a> to stay up to date on the inner happenings at HAMweather.</p>
<!-- read_more -->
<h4>
	Can I still access my local weather?</h4>
<p>
	<img alt="Weather Search" class="fright" height="100" src="/images/blog/blog_wxsearch.png" width="291" /><br />
	Yes, we still offer a <a href="http://wx.hamweather.com">complete weather area</a> where you can access current conditions, forecasts, advisories and more for your location. Simply enter in your location (city,state/country OR zipcode) into the weather search field that appears at the top of every page on the site. Additionally, you can access current conditions for your location and other nearby locations by using our Aeris widget displayed at the bottom of the home page.</p>
<h4>
	How do I access my account? Did I lose my account information, products or branding?</h4>
<p>
	With the site redesign, we also upgraded our subscription system. Therefore, if you started your account before December 2011, you can login to your account using our <a href="http://www.hamweather.com/account_old/member.php">old account system</a>. Your account is still active as well as all of your products and branding configurations and will be able to access your account and the graphics brander as normal. Aside from a slightly different look to the account area, nothing will change for you during the transition period. Just ensure that you are logging into and accessing the correct account area.</p>
<h4>
	So, what happened to HW3?</h4>
<p>
	The first thing you probably notice is that the software package HAMweather 3 is not prominently advertised, but in its place is <a href="http://www.hamweather.com/products/aeris-api/">Aeris</a>.&nbsp; Over the years working with a wide range of clients, a common theme began to emerge: flexible, yet powerful, weather content is key. No longer was a single solution, the weather-site-in-a-box, the right solution. As web and mobile applications become some of the more prominent methods people obtain their weather, clients are needing easy-to use weather content that can quickly be integrated into their custom applications. The HW3 software turns 11 years old this year, and its core code-base has become quite dated and no longer offered the best solution. Aeris is our completely new weather content solution designed from the ground up to meet these modern needs.</p>
<p>
	Therefore, we will no longer be actively developing for the HAMweather 3 software suite. For a limited time during the transition, we will still offer access to the original HW3 software and official plugins for PHP only. During this period, we will also provide access to updated databases, so that current HW3 installations can stay up to date with the latest changes. You can access this content from our <a href="http://www.hamweather.com/products/hw3/">HAMweather 3</a> page.</p>
<h4>
	What happens to HAMweather 3 Suite users?</h4>
<p>
	With the release of Aeris suite, we are no longer developing for the HW3 software suit. However, we will continue to support HW3 users with updated databases at least through the summer of 2012.</p>
<p>
	This does not mean that the original HW3 software package and plugins will no longer function as is, but we will no longer be releasing bug fixes or updates due to data changes from NOAA. To ensure you continue to receive the most accurate weather data once the phasing out of HW3 is complete, you can sign up for any one of our <a href="http://www.hamweather.com/products/">suite of products</a> at any time.</p>
<h4>
	Where can I find the original HW3 support forums and documentation?</h4>
<p>
	With the launch of our new site, our new support system has replaced the previous HW3 forums which means you will have to create a new support account even if you had an existing one on the old HW3 forums. In the coming days we will be archiving the original support forums and documentation and providing them for existing HW3 users to reference. Read more about the changes on our <a href="http://www.hamweather.com/products/hw3/">HAMweather 3</a> page and <a href="http://www.hamweather.com/blog/">blog</a>.</p>
]]></description>
		<dc:subject>General</dc:subject>
		<pubDate>Tue, 29 Nov 2011 22:51 GMT</pubDate>
	</item>

	</channel>
</rss>
