Order Your Official Albuquerque Visitors Guide Today! (2024)

If you are visiting Albuquerque within 12 days of your request for an Official Albuquerque Visitors Guide, please understand that we cannot guarantee that the guide will get to you before you leave. Once in town, the Visitors Guideisavailable at ourinformation centers,located in the baggage claim area of the Albuquerque International Sunport andin Old Town. Many Albuquerque hotels also have the Official Visitors Guideavailable.

Note: We do not ship guides to the greater Albuquerque area. Please visit one of our information centers in Old Town or at the airport to obtain a guide.

View Digital Visitors Guide

If you are an AAA office that is seeking a large quantity of our guides, please contact us at guiderequests@visitabq.org or 505-222-4357.

'+ '

'+' '+ ' '+ ' '+' '+'
'+ '<<' + this.getCurMonthName(sDate) + '>> '+ ' '+ '<<' + sDate.getFullYear() + '>>'+ '

'+'

'+'' + this.dayListTds() + '' + this.calDays(id, sDate, useToday) +'

'+'

' }; return d.calendar; }, calDays: function(id, curDate, useToday){ var rtnvar = ''; var numDaysInMonth = new Date(curDate.getFullYear(), curDate.getMonth()+1, 0).getDate(); var startofmonth = new Date(); startofmonth = new Date(curDate.getFullYear(),curDate.getMonth(),1); var rows = Math.ceil((startofmonth.getDay()+numDaysInMonth)/7); var cday = 1; var firstday = startofmonth.getDay()+1; var lastday = numDaysInMonth; var loopstart = 0; var loopend = 0; var currentDate = new Date(); currentDate = new Date(currentDate.getFullYear(), currentDate.getMonth(), currentDate.getDate()); for(var i = 1; i <= rows; i++){ rtnvar += '

'; loopstart = ((i-1)*7)+1; loopend = loopstart+6; for(var d = loopstart; d <= loopend; d++){ rtnvar += ''; if(d >= firstday && cday <= lastday){ var dt = new Date(curDate.getFullYear(), curDate.getMonth(), cday); var tmpDt = new Date(curDate.getFullYear(), curDate.getMonth(), curDate.getDate()); var className = (dt.getTime() == tmpDt.getTime() && useToday) ? 'today' : 'Day'; className += dt.getTime() == currentDate.getTime() ? ' currentDay' : ''; var thisdate = this.convertToUserDate(parseInt(dt.getMonth()+1,10) +'/'+parseInt(dt.getDate(),10)+'/'+parseInt(dt.getFullYear(), 10)); rtnvar += '' + cday + '
'; cday++; }else{ rtnvar += '
'; } } rtnvar += '

'; } return rtnvar; }, replaceCal: function (id, sDate) { var cal = this.createCal(id, sDate, false); if (document.getElementById(id + '_calendar')) { document.getElementById(id + '_calendar').innerHTML = cal; } else { var newDomElm = document.createElement('div'); newDomElm.style.position = 'absolute'; newDomElm.innerHTML = cal; newDomElm.id = id + '_calendar'; if (document.getElementById('fieldcontainer_' + id)) { document.getElementById('fieldcontainer_' + id).appendChild(newDomElm); } } return; }, updateDate: function(id, curDate){ document.getElementById(id).value = curDate; //document.getElementById(id).onchange(); if(document.getElementById(id + '_calendar')){ document.getElementById('fieldcontainer_' + id).removeChild(document.getElementById(id + '_calendar')); } if(document.getElementById('datepicker_' + id)){ document.getElementById('datepicker_' + id).onclick = function(){ svcrm.formBuilderScripts.fbCalendar.showDatePicker(document.getElementById(id), document.getElementById(id).value); }; } }, showDatePicker: function(domElm, curDate){ var cleanID = domElm.id.replace('datepicker_', ''); var sDate = new Date(); if(!document.getElementById(cleanID + '_calendar')){ if(document.getElementById(cleanID)){ try{ if(curDate){ sDate = this.convertToUSDate(curDate); if(sDate == 'Invalid Date'){ sDate = new Date(); } } }catch(e){ sDate = new Date(); } this.getCalendar(cleanID, sDate); } }else{ document.getElementById('fieldcontainer_' + cleanID).removeChild(document.getElementById(cleanID + '_calendar')); } }, getCalendar: function(id, curDate){ var newDomElm = document.createElement('div'); newDomElm.style.position = 'absolute'; newDomElm.innerHTML = this.createCal(id, curDate, true); newDomElm.id = id + '_calendar'; newDomElm.className = 'svcrm_datepicker'; document.getElementById('fieldcontainer_' + id).appendChild(newDomElm); }, convertToUSDate: function(dte){ var rtnvar = false; var wrk = dte.split(crm_locale.YAHOO_DATE_FIELD_DELIMITER); var wrkdate = []; var mydate = ''; if(wrk.length > 0){ wrkdate[0] = parseInt(wrk[crm_locale.YAHOO_MDY_DAY_POSITION-1],10); //always holds the day wrkdate[1] = parseInt(wrk[crm_locale.YAHOO_MDY_MONTH_POSITION-1],10); //always holds the month wrkdate[2] = parseInt(wrk[crm_locale.YAHOO_MDY_YEAR_POSITION-1],10); //always holds the year if(wrkdate[1] > 0 && wrkdate[1] < 13){ //Validate the months var monthsWithDaysRegExp = new RegExp("(4|6|9|11)", "gi"); var numdays = 31; if(wrkdate[1] == 2){//feb numdays = 28; //check if leap year if (wrkdate[2] % 4 === 0 && (wrkdate[2] % 100 !== 0 || wrkdate[2] % 400 === 0)){ numdays = 29; } }else if(monthsWithDaysRegExp.test(wrkdate[1])){ numdays = 30; } if(wrkdate[0] > 0 && wrkdate[0] <= numdays){ //validate the days in this month if(wrkdate[2].toString().length == 2){ //if we have a two digit year pad it wrkdate[2] = chkYear(wrkdate[2]); } if(wrkdate[2].toString().length == 4 && !isNaN(wrkdate[2])){ //validate the year, could expand this /* we are here we have a valid month and we have a valid day for that month and we have a valid 4 digit year */ //fld.value = wrkdate.join(crm_locale.YAHOO_DATE_FIELD_DELIMITER); wrk[1] = wrkdate[0]; //put the day back where it should be wrk[0] = wrkdate[1]; //put the month back where it should be wrk[2] = wrkdate[2]; //put the year back where it should be wrkdate = wrk.join("/"); //join on the us delim and return valid rtnvar = true; } } } } if(!rtnvar){ //if we didn't get a good date from above we use today wrkdate = new Date(); } return wrkdate; }, convertToUserDate: function(dte){ var rtnvar = false; var wrk = dte.split("/"); var wrkdate = []; var mydate = ''; if(wrk.length > 0){ wrkdate[0] = parseInt(wrk[1],10); //always holds the day wrkdate[1] = parseInt(wrk[0],10); //always holds the month wrkdate[2] = parseInt(wrk[2],10); //always holds the year if(wrkdate[1] > 0 && wrkdate[1] < 13){ //Validate the months var monthsWithDaysRegExp = new RegExp("(4|6|9|11)", "gi"); var numdays = 31; if(wrkdate[1] == 2){//feb numdays = 28; //check if leap year if (wrkdate[2] % 4 === 0 && (wrkdate[2] % 100 !== 0 || wrkdate[2] % 400 === 0)){ numdays = 29; } }else if(monthsWithDaysRegExp.test(wrkdate[1])){ numdays = 30; } if(wrkdate[0] > 0 && wrkdate[0] <= numdays){ //validate the days in this month if(wrkdate[2].toString().length == 2){ //if we have a two digit year pad it wrkdate[2] = chkYear(wrkdate[2]); } if(wrkdate[2].toString().length == 4 && !isNaN(wrkdate[2])){ //validate the year, could expand this /* we are here we have a valid month and we have a valid day for that month and we have a valid 4 digit year */ //fld.value = wrkdate.join(crm_locale.YAHOO_DATE_FIELD_DELIMITER); wrk[crm_locale.YAHOO_MDY_DAY_POSITION-1] = wrkdate[0]; //put the day back where it should be wrk[crm_locale.YAHOO_MDY_MONTH_POSITION-1] = wrkdate[1]; //put the month back where it should be wrk[crm_locale.YAHOO_MDY_YEAR_POSITION-1] = wrkdate[2]; //put the year back where it should be wrkdate = wrk.join(crm_locale.YAHOO_DATE_FIELD_DELIMITER); //join on the correct delim and return valid rtnvar = true; } } } } if(!rtnvar){ //I dont really know what to do here i guess just use today and convert to their date var t = new Date(); t = t.getMonth()+1 + '/' + t.getDay() + '/' + t.getFullYear(); wrkdate = this.convertToUserDate(t); } return wrkdate; }, convertToUserMDOnlyDate: function(dte){ var dateFormat_MDOnly = crm_locale.DATEFMT_MDONLY.split(crm_locale.YAHOO_DATE_FIELD_DELIMITER); var _day = dte.getDate().toString(); var _month = (dte.getMonth() + 1).toString(); var _dayFormat = ''; var _monthFormat = ''; var _dayPostion = ''; var _monthPostion = ''; if(dateFormat_MDOnly[0].indexOf('d') != -1){ _dayFormat = dateFormat_MDOnly[0]; _monthFormat = dateFormat_MDOnly[1]; _dayPostion = 0; _monthPostion = 1; }else{ _dayFormat = dateFormat_MDOnly[1]; _monthFormat = dateFormat_MDOnly[0]; _dayPostion = 1; _monthPostion = 0; } if(_dayFormat == 'dd' && _day.length != 2){ _day = '0' + _day; } if(_monthFormat == 'mm' && _month.length != 2){ _month = '0' + _month; } var dsp = []; dsp[_dayPostion] = _day; dsp[_monthPostion] = _month; dsp = dsp.join(crm_locale.YAHOO_DATE_FIELD_DELIMITER); return dsp; } };/* +++++++++++++++++++++++++++ END Script Calendar +++++++++++++++++++++++++++++++++++++*/if (window.addEventListener) { window.addEventListener('load', svcrm.formBuilderScripts.__onload_function, false); } else if (window.attachEvent) { window.attachEvent('onload', svcrm.formBuilderScripts.__onload_function); }})();/* +++++++++++++++++++++++++++ BEGIN Script copied from OLD CMS loadCRMForm +++++++++++++++++++++++++++++++++++++*/

Order Your Official Albuquerque Visitors Guide Today! (2024)

FAQs

How many visitors does Albuquerque get a year? ›

Tourism is one of the nation's leading industries. And it makes an impact here in Albuquerque too: 6.2 million visitors come to Albuquerque each year, generating $69 million in local taxes.

Why do people visit Albuquerque New Mexico? ›

Whether exploring the city's cultural landmarks, immersing yourself in the arts scene, or savoring the flavors of New Mexican cuisine, Albuquerque is a destination that captures the spirit of the Southwest with every step.

Why are so many people moving to Albuquerque? ›

New Mexico attracts new residents from all over the country thanks to the beautiful landscape and 310 days of sun each year. The state's rich history, plentiful outdoor recreational activities, and great quality of life are all reasons why people are choosing to move to Albuquerque, New Mexico.

What percent of Albuquerque is white? ›

Download Table Data
RacePopulationPercentage (of total)
White341,18660.65%
Two or more races102,07118.14%
Other race56,41410.03%
Native American27,0634.81%
3 more rows

Is there a lot of Mexicans in Albuquerque? ›

In 2022, there were 1.57 times more White (Non-Hispanic) residents (208k people) in Albuquerque, NM than any other race or ethnicity. There were 133k White (Hispanic) and 83.9k Two+ (Hispanic) residents, the second and third most common ethnic groups. 49.8% of the people in Albuquerque, NM are hispanic (280k people).

What is the nicest city to live in New Mexico? ›

Best Places to Live in New Mexico
#CityCommunity Well-Being Score
1.Los Alamos75/100
2.Rio Rancho49/100
3.Roswell49/100
4.Corrales49/100
3 more rows
4 days ago

What is the best area of Albuquerque to live in? ›

Best Neighborhoods in Albuquerque for Families
  • Glenwood Hills.
  • Huning Castle.
  • Nob Hill.
  • North Albuquerque Acres.
  • Ventana Ranch.
Sep 3, 2024

Why is Albuquerque so cheap? ›

Along with low property taxes, state income tax is 31% lower than the national average, making Albuquerque an affordable place to live. As with any city, some areas are more cost-effective than others, but fortunately, a variety of safe, affordable neighborhoods in ABQ are available to choose from.

What salary do you need to live comfortably in Albuquerque? ›

To comfortably live in a one-bedroom apartment in Albuquerque, you should earn at least $43,200 a year.

Is it better to live in Albuquerque or Santa Fe? ›

Albuquerque has a lower unemployment rate than Santa Fe and the national average. And the average salary in Albuquerque is $7,000 more than in Santa Fe. But Santa Fe has a higher average hourly rate than Albuquerque. Both cities have a mixture of top employers in the government and the public sectors.

What is the vibe of Albuquerque? ›

Albuquerque is a vibrant and diverse city. Residents love the warm climate, low cost of living, gorgeous sunshine, unique cuisine, and endless cultural attractions.

Is Albuquerque the most populated city? ›

Albuquerque (/ˈælbəkɜːrki/ AL-bə-kur-kee; Spanish: [alβuˈkeɾke]), also known as ABQ, Burque, and the Duke City, is the most populous city in the U.S. state of New Mexico.

How fast is Albuquerque growing? ›

FACTS ABOUT ALBUQUERQUE

New Mexico's largest city, the Albuquerque Metro area has over 908,200 residents and is growing at a steady pace of 1 to 2 percent a year.

Is Albuquerque population growing? ›

The current metro area population of Albuquerque in 2024 is 967,000, a 1.26% increase from 2023. The metro area population of Albuquerque in 2023 was 955,000, a 1.38% increase from 2022. The metro area population of Albuquerque in 2022 was 942,000, a 1.4% increase from 2021.

Why did Albuquerque become the fastest growing city in the US? ›

Albuquerque has a unique sense of place that you can feel the minute you enter city limits. With the dramatic Sandia Mountains to the east, volcanos to the west and vast blue skies above framing the city you can understand why Albuquerque's growth rate has exceeded the national average for decades.

References

Top Articles
Panther Success Network
Prunedale Ca Zillow
Devin Mansen Obituary
Play FETCH GAMES for Free!
Week 2 Defense (DEF) Streamers, Starters & Rankings: 2024 Fantasy Tiers, Rankings
Breaded Mushrooms
The Ivy Los Angeles Dress Code
Ingles Weekly Ad Lilburn Ga
PRISMA Technik 7-10 Baden-Württemberg
Nm Remote Access
Publix 147 Coral Way
Bernie Platt, former Cherry Hill mayor and funeral home magnate, has died at 90
Matthew Rotuno Johnson
No Credit Check Apartments In West Palm Beach Fl
Caroline Cps.powerschool.com
Www.paystubportal.com/7-11 Login
Conduent Connect Feps Login
C-Date im Test 2023 – Kosten, Erfahrungen & Funktionsweise
Driving Directions To Atlanta
Pittsburgh Ultra Advanced Stain And Sealant Color Chart
Suffix With Pent Crossword Clue
Pac Man Deviantart
Skyward Login Jennings County
Tamilyogi Proxy
Ups Print Store Near Me
The Tower and Major Arcana Tarot Combinations: What They Mean - Eclectic Witchcraft
Xfinity Outage Map Fredericksburg Va
Walgreens Bunce Rd
Greensboro sit-in (1960) | History, Summary, Impact, & Facts
3569 Vineyard Ave NE, Grand Rapids, MI 49525 - MLS 24048144 - Coldwell Banker
Goodwill Of Central Iowa Outlet Des Moines Photos
Giantbodybuilder.com
Jazz Total Detox Reviews 2022
6465319333
A Small Traveling Suitcase Figgerits
Quake Awakening Fragments
Aliciabibs
How Many Dogs Can You Have in Idaho | GetJerry.com
Ramsey County Recordease
2 Pm Cdt
Flipper Zero Delivery Time
Brandon Spikes Career Earnings
Unitedhealthcare Community Plan Eye Doctors
Gabrielle Abbate Obituary
Hello – Cornerstone Chapel
40X100 Barndominium Floor Plans With Shop
The Latest Books, Reports, Videos, and Audiobooks - O'Reilly Media
Bama Rush Is Back! Here Are the 15 Most Outrageous Sorority Houses on the Row
Urban Airship Acquires Accengage, Extending Its Worldwide Leadership With Unmatched Presence Across Europe
Best brow shaping and sculpting specialists near me in Toronto | Fresha
Latest Posts
Article information

Author: Aracelis Kilback

Last Updated:

Views: 6324

Rating: 4.3 / 5 (44 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Aracelis Kilback

Birthday: 1994-11-22

Address: Apt. 895 30151 Green Plain, Lake Mariela, RI 98141

Phone: +5992291857476

Job: Legal Officer

Hobby: LARPing, role-playing games, Slacklining, Reading, Inline skating, Brazilian jiu-jitsu, Dance

Introduction: My name is Aracelis Kilback, I am a nice, gentle, agreeable, joyous, attractive, combative, gifted person who loves writing and wants to share my knowledge and understanding with you.