Skip to main content

Broadband Connectivity in Rural America

In what is called the "Digital Divide" broadband connectivity in rural America is sporadic, prohibitively expensive, and nonexistent. Those of us living in or around metropolitan areas have a choice of provider services ranging from cable modem, telephone line DSL (digital subscriber line), fiber optic cable, WiMax, fixed wireless, satellite, and broadband over existing power lines (BPL). A study done by the Pew Internet and American Life Project indicated that while broadband adoption is growing in urban, suburban, and rural areas, broadband users make up larger percentages of urban and suburban users than rural users. Pew found that the percentage of all U.S. adults with in home broadband is 52% for urban areas, 49% for suburban areas, and 31% for rural areas. (Kruge, 2008)
 
For service providers deploying equipment is costly making the return on investment low due to the population density.  As pointed out in the same study, the greater the geographical distances among customers, the larger the cost to serve those customers. There is often less incentive for companies to invest in broadband in rural areas than, for example, in an urban area where there is more demand (more customers with perhaps higher incomes) and less cost to wire the market area. (Kruge, 2008)  Having multiple choices creates competition which keeps the price of connectivity within reach. As pointed out in the US government's National Broadband Plan “In general, broadband subscribers appear to have benefited from the presence of multiple providers. Broadband providers have invested in network upgrades to deliver faster broadband speeds and enter new product markets - cable companies providing telephony and telephone companies offering multichannel video.” (Broadband Innovation and Competition Policy, 2011) The price of connectivity in rural areas runs higher than its urban counterpart. For example, a DSL plan for a user in Tox Alaska topped in at 512K up and down with a 10 GB monthly bandwidth allowance for about $180/month with a $50 charge for the Wi-Fi modem. Alternately, the satellite plan starts at $700 for the dish and $180/month for speeds of up to 1.25 MB up and down. (Sherman, 2009) Similar infrastructure costs are associated with WiMax deployment which some see as an alternative to Wi-Fi for rural areas. In a recent study by NetworkWorld describing the potential issues surrounding WiMax deployment “The terrain is very mountainous, it has tons of trees. It's not a cookie-cutter infrastructure by any means and building it in that environment will be the most challenging aspect we deal with.” (Reed, 2010)

The benefits of connecting more of our rural citizens would be huge. Consumerism, distance learning, and ecommerce for agriculture could bolster a sagging local economy. According to estimates, by relying on wireless broadband and therefore, providing 100% of coverage, 116,862 jobs can be created or saved between 2011 and 2014, while on average, the median income per county in those states could be increased by $1,201. (Katz, Avila, & Meille, 2010) Consider how farmers and agriculturalists could benefit from real time trading information regarding commodities, B2B and B2C marketing. Additionally, law enforcement, schools, libraries, hospitals and emergency services can all benefit from a stable, cost effective, and robust broadband connectivity. 
  • Broadband Innovation and Competition Policy. (2011). Retrieved 10 2011, from National Broadband Plan Connecting America: http://www.broadband.gov/plan/4-broadband-competition-and-innovation-policy/
  • Katz, P. L., Avila, J., & Meille, G. (2010). RCA's Economic Study: Economic Impact of Wireless Broadband in Rural America. Retrieved oct 2011, from RCA The Competitive Carriers Association: http://rca-usa.org/advocacy/economic-study/economic-study/914276
  • Kruge, L. (2008). Digital Divide / Rural Broadband. Retrieved oct 2011, from Cyber Telecom: http://www.cybertelecom.org/usf/dd.htm
  • Reed, B. (2010). Broadband stimulus brings WiMAX to rural U.S. Retrieved 10 2011, from NETWORKWORLD: http://www.networkworld.com/news/2010/102510-wimax-broadband-stimulus.html
  • Sherman, A. (2009). Connectivity Issues From Rural Work Places. Retrieved nov 20, 2011, from Giaom: http://gigaom.com/collaboration/connectivity-issues-from-rural-work-places-part-1/

Comments

Popular posts from this blog

:nth-child structural pseudo-class selectors

There are 4 pseudo-class expressions that are part of the :nth-child pseudo-class. Structural pseudo-class selectors target HTML elements based on the DOM tree. Basically, elements that cannot easily be targeted by simple selectors or combinations of selectors. What makes pseudo-classes so handy is the ability style elements dynamically based on its position in the DOM. :nth-of-type(N) :nth-last-child(N) :nth-child(N) :nth-last-of-type(N) :nth-of-type(N) selector My favorite of the 4 is the :nth-of-type(N) selector. The nth-of-type selector allows you to select child elements of a parent based on the particular type of the element, for example every 5th "li" element in a list. You can select even or odd elements, or the nth (order number) child in the group of elements. The class accepts the argument "n" which can can be a keyword, a number, or strings "odd", "even", or an expression "-n+3". Let's look at a simple but ef

The ICMP protocol

Let's look into the ICMP protocol. Specifically, ping and traceroute. ICMP is the Internet Control Message Protocol and is a component of the IP Layer. Basically, used by hosts to communicate diagnostic network layer information that is carried in the IP payload. It communicates error messages which are acted on by the IP layer or the UDP or TCP protocols. All of the exercises were carried out using the open source network protocol analyzer "Wireshark". www.wireshark.org Describe in detail the protocols ARP and ICMP. ARP is the Address Resolution Protocol is similar to that of DNS. Where DNS resolves IP addresses to domain names, ARP resolves network layer IP addresses to link layer MAC addresses. In order to send a datagram the source must give the adaptor the IP address and the MAC address. For example, host A wants to send a packet to host B. Host A uses a cached ARP table to look up the IP address for any existing records of host B's MAC address. If the MA

Creating triggers

Triggers are SQL statements which are stored with the intention of being activated or fired when an event associated with a database table occurs. This could be any event including an INSERT, UPDATE and DELETE. Lets begin by creating a few simple insert triggers CREATE a trigger on the ORDERLINE table for the insert event. The trigger will update the corresponding PRODUCT record QTY_ORDERED by adding the value of QTY to QTY_ORDERED. CREATE TRIGGER tr_qty_ordered_value_insert ON Orderline FOR INSERT AS BEGIN UPDATE product SET QTY_ORDERED = QTY_ORDERED + ((SELECT qty from INSERTED) * (SELECT unitprice from INSERTED)) WHERE product.ProductID = (SELECT ProductID from INSERTED); END; Command(s) completed successfully. CREATE a trigger on the ORDERLINE table for the delete event. The trigger will update the corresponding PRODUCT record QTY_ORDERED by subtracting the value of QTY FROM QTY_ORDERED. CREATE TRIGGER tr_qty_ordered_value_delete ON Orde