Product database

Filter by Category: All Categories Tents Sleeping Pads Shoes Down Jackets Rain Jackets Backpacks Sleeping Bags/Quilts Miscellaneous Gear
Category Product (Brand) Weight (g)
Tents Plex Solo (Zpacks) 400
Tents The One (Gossamer Gear) 500
Tents X-Mid 1 (Durston) 800
Tents Hornet Elite (Nemo) 600
Tents Duplex Zip (Zpacks) 550
Tents Mid-1 (Hyperlite Mountain Gear) 450
Tents Offset Trio (Durston) 700
Tents Sundome 6 (Coleman) 1200
Tents X-Mid Pro 2 (Durston) 600
Tents Wawona 6 (The North Face) 1500
Tents Base Camp 4 (REI Co-op) 1800
Tents Halny Elite 1 (Unknown) 1000
Tents Quasar 3D (Nemo) 900
Tents Luxe Hiking Gear (Luxe) 700
Tents Fly Creek (Big Agnes) 800
Sleeping Pads Tensor All-Season Ultralight (Nemo) 400
Sleeping Pads NeoAir XLite NXT (Therm-a-Rest) 350
Sleeping Pads Zoom UL Insulated (Big Agnes) 400
Sleeping Pads Static V (Klymit) 500
Sleeping Pads LuxuryMap (Therm-a-Rest) 600
Sleeping Pads Quasar 3D Lightweight (Nemo) 450
Sleeping Pads NeoAir Uberlite (Therm-a-Rest) 250
Sleeping Pads Flex 22 (Katabatic Gear) 400
Sleeping Pads Ether Light XT (Sea to Summit) 400
Sleeping Pads Insulated Air Core (REI Co-op) 500
Sleeping Pads Trail Pro (Therm-a-Rest) 600
Sleeping Pads Switchback (Exped) 450
Sleeping Pads AirMat Ultra (Montbell) 300
Sleeping Pads Z-Lite Sol (Therm-a-Rest) 400
Shoes Quest 4 Gore-Tex (Salomon) 600
Shoes Moab Speed 2 (Merrell) 500
Shoes Olympus 6 Hike Low GTX (Altra) 550
Shoes Anacapa Low (Hoka) 500
Shoes Ghost (Brooks) 450
Shoes Clifton 9 (Hoka) 400
Shoes Scrambler Lows (Xero Shoes) 300
Shoes FuelCell (New Balance) 500
Shoes N45 (Danner) 600
Shoes Moab Gore-Tex (Merrell) 550
Shoes Trail 2650 (Danner) 500
Shoes Speedgoat (Hoka) 450
Shoes Lone Peak (Altra) 400
Down Jackets Cerium Hoody (Arc’teryx) 300
Down Jackets Alpine Light Down (Montbell) 250
Down Jackets Goose Down Jacket (Zpacks) 200
Down Jackets Mythic Ultra (Rab) 300
Down Jackets Micro Puff (Patagonia) 250
Down Jackets Forclaz MT100 (Decathlon) 300
Down Jackets Versalite 10 (Western Mountaineering) 350
Down Jackets Down Sweater (Patagonia) 300
Down Jackets Nuclei FL (Arc’teryx) 280
Down Jackets Ghost Whisperer (Mountain Hardwear) 200
Rain Jackets Versalite (Montbell) 180
Rain Jackets Vertice (Zpacks) 150
Rain Jackets Helium (Outdoor Research) 200
Rain Jackets Torrent (Patagonia) 250
Rain Jackets Beta SL (Arc’teryx) 300
Rain Jackets Precip Eco (Marmot) 250
Rain Jackets Flash (REI Co-op) 200
Rain Jackets Minimalist (Marmot) 220
Rain Jackets Stretch Ozonic (Montbell) 200
Rain Jackets Aspire (Outdoor Research) 250
Backpacks Unbound 40 (Hyperlite Mountain Gear) 800
Backpacks Kakwa 55 (Durston) 900
Backpacks Arc Haul (Zpacks) 700
Backpacks Circuit (ULA) 850
Backpacks Skala 38 (Gossamer Gear) 600
Backpacks Swift X (Six Moon Designs) 800
Backpacks Junction (Hill People Gear) 1000
Backpacks Daylite Expandable (Osprey) 700
Backpacks NH100 10L (Decathlon) 500
Backpacks Subterra 34L (Thule) 1000
Sleeping Bags/Quilts Spark Sp1 (Sea to Summit) 350
Sleeping Bags/Quilts UltraLite (Western Mountaineering) 500
Sleeping Bags/Quilts Economy Burrow (Hammock Gear) 400
Sleeping Bags/Quilts Phantom 220 (Nordisk) 450
Sleeping Bags/Quilts Torchlight 20 UL (Big Agnes) 1000
Sleeping Bags/Quilts Infinity 300 (Rab) 600
Sleeping Bags/Quilts HyperLamina Spark (Mountain Hardwear) 700
Sleeping Bags/Quilts Voyage (Treklife) 920
Sleeping Bags/Quilts Spark Sp4 (Sea to Summit) 1100
Sleeping Bags/Quilts Defence 1 Top (Carinthia) 800
Miscellaneous Gear Flex 22 Quilt (Katabatic Gear) 450
Miscellaneous Gear Revelation 20 Quilt (Enlightened Equipment) 400
Miscellaneous Gear StormLoft Quilt (Outdoor Vitals) 350
Miscellaneous Gear PocketRocket Stove (MSR) 70
Miscellaneous Gear Spot Headlamp (Black Diamond) 80
Miscellaneous Gear Actik Core (Petzl) 75
Miscellaneous Gear Beacon Bottle (Anantvijay) 200
Miscellaneous Gear Titanium Spork (SilverAnt) 20
Miscellaneous Gear Ultralight Hammock (Various) 300
Miscellaneous Gear Crampons (Sportneer) 400
// JavaScript for filtering and sorting let sortDirection = 1; // 1 for ascending, -1 for descending function filterTable() { const filter = document.getElementById(‘category-filter’).value; const rows = document.querySelectorAll(‘.gear-table tbody tr’); rows.forEach(row => { if (filter === ‘all’ || row.getAttribute(‘data-category’) === filter) { row.classList.remove(‘hidden’); } else { row.classList.add(‘hidden’); } }); } function sortTable() { const table = document.querySelector(‘.gear-table’); const tbody = table.querySelector(‘tbody’); const rows = Array.from(tbody.querySelectorAll(‘tr’)); const header = table.querySelector(‘th.sortable’); // Toggle sort direction sortDirection *= -1; // Update sort indicators header.classList.toggle(‘sort-asc’, sortDirection === 1); header.classList.toggle(‘sort-desc’, sortDirection === -1); // Sort rows by weight rows.sort((a, b) => { const weightA = parseInt(a.cells[2].textContent); const weightB = parseInt(b.cells[2].textContent); return (weightA – weightB) * sortDirection; }); // Re-append sorted rows rows.forEach(row => tbody.appendChild(row)); }