Golfland Sunsplash

Golfland-Sunsplash is a series of water parks and family amusement centers originating in Mesa, AZ. The park is separated into two separate parks. Golfland operates year-round and features three miniature golf courses, an arcade, a pizza restaurant, a go-cart track, and bumper boats. Sunsplash operates in the summer and features 29 water-based attractions.

Golfland Sunsplash
The Castle at Golfland-Sunsplash
SloganArizona's Number One Destination for Family Fun!
Location155 West Hampton Avenue, Mesa, Arizona
Coordinates33.388°N 111.8375°W / 33.388; -111.8375
OwnerGolfland Entertainment Centers
Opened1983 (1983)
Operating seasonMarch-Sept for Waterpark, All year for Golfland
Attractions
Total34
Water rides29
WebsiteOfficial website
StatusOperating

The park opened in 1983 and the water park opened in 1986.

Golfland-Sunsplash is operated by Golfland Entertainment Centers. Golfland Entertainment Centers was founded in 1953 and currently operates 7 properties in Arizona and California.

Notable Events

  • In the movie Bill & Ted's Excellent Adventure, Bill, Ted, and Napoleon visit a fictional waterpark called Waterloo in San Dimas, CA. The scenes at Waterloo are a cross between establishing shots at San Dimas Raging Waters and shots with the actors at Golfland Sunsplash.

Notable rides and attractions

  • Thunder Bay is a 450,000 gallon wave pool.
  • Splashwater Harbor Slides are the original four tube slides. There are two dark slides and two regular slides.
  • Master Blaster (2002) is a water slide that uses jets to propel riders uphill, similar to a roller coaster.
  • Sidewinder (2005) is a half-pipe style water slide.
  • The Cauldron (2008) is a single rider body slide that drops into an open bowl. The first ever bowl slide was built at Golfland in Roseville, CA in 1999.
  • Thunder Falls (2010) is a seven-story family raft ride with three high speed drops.
  • The Stormrider (2011) is a four-person behemoth-bowl slide. At nearly 8 stories tall, it is one of the tallest slides in the southwest. The first ever Behemoth Bowl slide was built at Golfland in Roseville, CA in 2004.
  • The Revolution (2012) is a two-person bowl slide with a high speed drop.
  • Double Dare (2014) consists of two parallel racing body slides that start with ProSlide Technology's SkyBox trap door launch system.
gollark: It's 00:00 now.
gollark: oh dear.
gollark: Well, the outsourced `parsedatetime` stuff can probably do it.
gollark: Good luck.
gollark: Fine.```python# from here: https://github.com/Rapptz/RoboDanny/blob/18b92ae2f53927aedebc25fb5eca02c8f6d7a874/cogs/utils/time.pyshort_timedelta_regex = re.compile("""(?:(?P<years>[0-9]{1,8})(?:years?|y))? # e.g. 2y(?:(?P<months>[0-9]{1,8})(?:months?|mo))? # e.g. 2months(?:(?P<weeks>[0-9]{1,8})(?:weeks?|w))? # e.g. 10w(?:(?P<days>[0-9]{1,8})(?:days?|d))? # e.g. 14d(?:(?P<hours>[0-9]{1,8})(?:hours?|h))? # e.g. 12h(?:(?P<minutes>[0-9]{1,8})(?:minutes?|m))? # e.g. 10m(?:(?P<seconds>[0-9]{1,8})(?:seconds?|s))? # e.g. 15s """, re.VERBOSE)def parse_short_timedelta(text): match = short_timedelta_regex.fullmatch(text) if match is None or not match.group(0): raise ValueError("parse failed") data = { k: int(v) for k, v in match.groupdict(default=0).items() } return datetime.datetime.utcnow() + relativedelta(**data)cal = parsedatetime.Calendar()def parse_humantime(text): time_struct, parse_status = cal.parse(text) if parse_status == 1: return datetime.datetime(*time_struct[:6]) else: raise ValueError("parse failed")def parse_time(text): try: return datetime.datetime.strptime(text, "%d/%m/%Y") except: pass try: return parse_short_timedelta(text) except: pass try: return parse_humantime(text) except: pass raise ValueError("could not parse time")```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.