Image | ![]() |
EAN-13 | 9780929591735 ![]() |
Product Name | Benchmark Utah Road & Recreation Atlas, 6th Edition |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Other Format |
Amazon.com | ![]() |
SKU | ACOMMP2X51201_USEDLIKENEW_0929591739 |
Price New | 14.23 US Dollars (curriencies) |
Price Used | 13.25 US Dollars (curriencies) |
Width | 0.25 inches (convert) |
Height | 15.5 inches (convert) |
Length | 11 inches (convert) |
Weight | 15.68 ounces (convert) |
Author | Benchmark Maps |
Page Count | 96 |
Binding | Paperback |
Published | 10/01/2015 |
Features | Atlases: Every Benchmark atlas is specially designed for enthusiasts of hunting, fishing, camping, boating, hiking, and other outdoor activities. All atlases have Benchmarks exclusive Landscape Maps with large easy-to-read and page overlap, and a useful GPS grid. The categorized Recreation Guide makes planning your next adventure a breeze. The Recreation Maps have public land ownership shown as color tints, and most titles have hunting unit names and boundaries, Recreational Maps: Benchmarks Recreation Maps were created for outdoor lovers who want the high quality recreation information in our atlases but with the convenience of a traditional folding map. Complete public lands detail and hunting unit boundaries are shown as well as categorized recreation listings. |
Long Description | Utah, with its flat-topped mountains, deep-gouged canyons and salt deserts, deserves an atlas that matches its dynamic scenery. Benchmark's Utah atlas is it! There you'll find hundreds of recreation sites, fishing spots, hunting areas and a myriad of other things to do in the Beehive State. Landscape Maps™ show all drivable Utah roads, classed by surface and purpose, and thousands of campgrounds and other destinations. Map Scale = 1:250,000 & 1:730,000Sheet Size = 11" x 16" |
Similar Items | 9780373013968: California Road And Recreation Atlas (Benchmark Atlas) 9780349112725: Nevada Road and Recreation Atlas (Benchmark) 9780470068571: Colorado Road and Recreation Atlas (Benchmark Atlas) 9780929591919: Colorado Road and Recreation Atlas (Benchmark Atlas) 9780874804324: Canyonlands Country: Geology Of Canyonlands And Arches National Parks 9780826306012: New Mexico Benchmark Road & Recreation Atlas 9780749567958: California Road And Recreation Atlas (Benchmark Atlas) 9780929591490: California Road And Recreation Atlas (Benchmark Atlas) 9781564408532: Utah: Off The Beaten Path(Tm) 9780929591926: Nevada Road and Recreation Atlas (Benchmark) View 65 more similar items |
Created | 02-26-2012 9:45:30pm |
Modified | 05-01-2020 5:30:20am |
MD5 | 03dc747ecf579307a953ecb7cf2ba03c |
SHA256 | 105db7c574c5659427e8875fb1d2d3b48f33772ecfec72bf8be49c6ff40522e9 |
Search Google | by EAN or by Title |
Query Time | 0.0182531 |
Article of interest
This is a basic implementation of a service that provides retrieval access to the EANData.com UPC web site. Its was coded to verify basic proof-of-concept for development of another application and was not intended to provide be anything more than basic functionality in the retrieval of UPC data from the EANData.com web site.
There are several places where simple code was left in place rather than using more advanced Java features/methods to allow for easier understanding of junior developers. Not much time spent refactoring or cleaning up the code. It is provided as a starting point only.
It contains a Factory service that returns a service object configured using the UcpService.properties (see below) file found in the class path of the executed code. The UpcQueryService can respond with an implementation of the UpcResponse and supporting interfaces or with an InputStream allowing direct access to the response from the from the EANData.com web site.
JSR 353 is the Java API for JSON is currently under development (http://java.net/projects/json-processing-spec & http://java.net/projects/jsonp). The several Java JSON implementations seemed to be more than I was wanting/needing so I wrote a basic parser to provide JSON parsing capability needed. Its not perfect but is a good basic start.
Download the example source code
The UpcService.properties must be configured.
Url (Required)
provides the address used to query UPC data. The additional parameters are added to retrieve the requested information.
ApiKeyCode (Required)
Provided from EANData.com when your account is setup.
Mode (Required)
The manner in which the data will be retrieved from the EANData.com web site.
AutoRetrieveGraphics (Optional)
Boolean to indicate whether the graphics, when indicated by a Url, are to be automatically retrieved at the same time with the UPC data. Default is false. A factory method allows for the this property to be overridden at the time the UpcQueryService is created.