About

Volume Concrete LLC., is a family owned and locally operated company operating in the Pacific Northwest.

“Volume Concrete Delivers 1+.”

We care deeply about our operators, contractors, staff and all those who are involved in keeping the operation fluid and running. And, it’s very important to the operation that we source our materials locally, including all the materials from here in Oregon including the Portland Cement.

Currently our delivery zone is the Portland Metro (see Delivery Map). As Volume Concrete LLC., expands in 2019, our zones will continue to reach out into the rural areas. Stay tuned to the delivery map for up to date information.

Policies

console.log('Weather script running for Volume Concrete'); const apiKey = '4827d7ceb7afc7af5cd7c65aab9f3ee3'; // Replace with your OpenWeatherMap API key const city = 'Portland,OR,US'; const apiUrl = `https://api.openweathermap.org/data/2.5/weather?q=${city}&appid=${apiKey}&units=imperial`; async function fetchWeather() { const weatherBox = document.getElementById('weather-box'); if (!weatherBox) { console.error('Weather box element not found'); return; } try { const response = await fetch(apiUrl); if (!response.ok) { const errorData = await response.json(); throw new Error(`API Error: ${errorData.message}`); } const data = await response.json(); weatherBox.innerHTML = `

Temperature: ${data.main.temp.toFixed(1)}°F

Condition: ${data.weather[0].description}

Humidity: ${data.main.humidity}%

Wind Speed: ${data.wind.speed} mph

`; } catch (error) { weatherBox.innerHTML = `

Error: ${error.message}

`; console.error('Fetch error:', error); } } document.addEventListener('DOMContentLoaded', () => { console.log('DOM loaded, fetching weather'); fetchWeather(); }); setInterval(fetchWeather, 3600000); // Update hourly