REI Lookout Pack

REI Lookout Pack

Average Rating: rated 4.00 of 5 stars
Reviewed by 7 Trailspace users

Description

The Lookout Pack is a daypack made by REI. It has an average rating of 4 stars (out of 5), based on 7 user reviews.

Can't open file: 'retailer_brand.MYI' (errno: 145)
	SELECT
				product.product_id,
				brand.brand_id,
				brand.short_name AS brand,
				brand.url_stub AS brand_url_stub,
				product.product_name,
				product.producttype_id AS producttype_id,
				product.gender,
				product.url_stub,
				product.description,
				product.manufacturer_description,
				UNIX_TIMESTAMP(product.date_available) AS date_available,
				product.date_available_note,
				product.price_msrp,
				product.specs,
#				GROUP_CONCAT(DISTINCT(IF(product.gender IN('u'),'m,w',IF(product.gender IN('b','g'),'k',product.gender)))) AS genders,
				product_totals.overall_average_rating AS average_rating,
				product_totals.overall_num_reviews AS num_reviews,
				product_totals.num_retailers
			FROM
				(
				product,
				brand
				)
			LEFT JOIN
				product_totals
			ON
				product_totals.product_id = product.product_id
			WHERE
				product.url_stub = 'lookout-pack'
				AND brand.brand_id = product.brand_id
				AND brand.brand_id = '35'
			GROUP BY
				product.producttype_id
			ORDER BY
				product.producttype_id
			

User Reviews

rated 4 of 5 stars Unisex Lookout Pack
Reviewed by paoconnell, May 18, 2008

"I just bought this pack 3 weeks ago (early May 2008) and have taken it day hiking twice. This pack is different from the 2006 model in several ways.

This model has a horseshoe zippered flap to let you into the pack, instead of a strap down flap with carabiner loops (from looking at the pictures of the old model)."

Read the complete review »

rated 3 of 5 stars Unisex Lookout Pack
Reviewed by Travellerdude, Jul 02, 2007

"It's a decent pack. I do wish it had stays. I don't like the horseshoe main compartment zipper. I wish it was either a top loader or a panel loader. At least with a panel loader you can just zip it up most of the way and use it like a top loader."

Read the complete review »

rated 2 of 5 stars Men's Lookout Pack
Reviewed by robby85382@..., Jun 19, 2007

"I really wanted to like this pack but after trying to load the pack up for a trip to Yosemite the zippers on two separate units resulted in a return to the store. The zippers were very cumbersome and frustrating to open and close. I believe it has to do with the location of assembly and production as well as the design and maybe the zippers chosen."

Read the complete review »

rated 5 of 5 stars Lookout Pack
Reviewed by Roxanne, Apr 24, 2007

"This pack is one of the most comfortable packs I've ever worn. It has everything I like in a pack -- front loader and side pockets, surprisingly light and fits surprisingly well for an REI pack (I've always been a Gregory fan for this reason over REI packs -- REI packs I've tried, like the Venus which I own, have felt stiffer and heavier than Gregory's, to me)."

Read the complete review »

rated 5 of 5 stars Lookout Pack
Reviewed by Ron, Jan 03, 2007

"I've had the pack for almost a year now. It's gone with me on dayhikes, multiday hikes, vacation car trips, and just around town sometimes. This pack is a gem. It's perfect for a day trip, an overnighter, or even an extended multi-day lightweight trip."

Read the complete review »

rated 4 of 5 stars Lookout Pack
Reviewed by cdrross, Dec 11, 2005

"I purchased this pack the other day and I just got back from my first hike. Let me start off by saying that I am just getting back into hiking after about 10 years of sitting on my duff and doing nothing but getting out of shape (250+ lbs. ).

That being said, I logged about six miles in 38 degree weather in about 3" of snow here in Maryland on a relatively easy set of trails."

Read the complete review »

rated 5 of 5 stars Lookout Pack
Reviewed by pacemaker, Sep 17, 2005

"I just purchased my REI Lookout daypack during the REI Labor Day Sale Event. I purchased the large pack which is 2700 cubic inch and a great light weight pack at approx. 3 pounds. I used the pack on a two-day 15 mile hike on the AT in Georgia starting at Unicoi Gap."

Read the complete review »

Have you owned or used a REI Lookout Pack? Share your thoughts with other hikers and backpackers.

Where to Buy

Can't open file: 'retailer_brand.MYI' (errno: 145)
SELECT
								retailer.*,
								retailer_product.*,
								retailer_brand.*,
								retailer.retailer_id AS retailer_id,
								LEAST(
									IF(retailer_product.gender IS NULL,0,100),
									IF(retailer_product.gender = '',0,100),
									IF(retailer_product.gender = 'u',0,100),
									IF(retailer_product.gender = 'm',1,100),
									IF(retailer_product.gender = 'w',2,100),
									IF(retailer_product.gender = 'k',3,100),
									IF(retailer_product.gender = 'b',4,100),
									IF(retailer_product.gender = 'g',5,100)
								) AS gender_sort
							FROM 
								product AS p1,
								product AS p2,
								retailer_product,
								retailer,
								retailer_brand
							WHERE
								p1.product_id = '7397'
								AND p2.brand_id = p1.brand_id
								AND p2.product_name = p1.product_name
								AND retailer_product.product_id = p2.product_id
								AND retailer_product.status = 'active'
								AND retailer_product.product_link_url != ''
								AND retailer.retailer_id = retailer_product.retailer_id
								AND retailer.is_online = 1
								AND retailer.status = 'active'
								AND retailer.show_product_link = 1
								AND retailer_brand.retailer_id = retailer.retailer_id
								AND retailer_brand.retailer_brand_id = retailer_product.retailer_brand_id
							GROUP BY
								retailer.retailer_id,
								retailer_product.retailer_product_id
							ORDER BY
								retailer.avg_epc DESC,
								retailer.commission_rate DESC,
								retailer.cookie_days DESC,
								retailer.retailer_id ASC,
								price ASC,
								gender_sort ASC
							
Can't open file: 'retailer_brand.MYI' (errno: 145)
SELECT
								*,
								brand.short_name AS brand,
								retailer.retailer_id AS retailer_id
							FROM 
								brand,
								retailer,
								retailer_brand
							WHERE
								brand.brand_id = '35'
								AND retailer_brand.brand_id = brand.brand_id
								AND retailer_brand.status = 'active'
								AND retailer.retailer_id = retailer_brand.retailer_id
								AND retailer.is_online = 1
								AND retailer.status = 'active'
								AND retailer.show_brand_link = 1
							GROUP BY
								retailer.retailer_id
							ORDER BY
								# is_house_brand DESC,
								retailer.avg_epc DESC,
								retailer.commission_rate DESC,
								retailer.cookie_days DESC,
								retailer.retailer_id ASC
							

Sorry, we couldn't find any online retailers selling the REI Lookout Pack. You may be able to find it new or used at one of these sites:


Trailspace Classifieds

US | Canada | UK | Aus

GearTrade

Retailers: Do you sell the REI Lookout Pack? List your site here.

Similar Backpacks

email this page
Can't open file: 'retailer_brand.MYI' (errno: 145)