Jump to content

Main Page/Sandbox

7.60098.367Full screen dynamic map
From Wikivoyage
Andaman Coast > Main Page/Sandbox

<!DOCTYPE html> <html lang="en"> <head>

   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Racha Island - Wikivoyage</title>
   <style>
       /* 基础样式重置 */
       * {
           margin: 0;
           padding: 0;
           box-sizing: border-box;
       }
       
       body {
           font-family: 'Helvetica Neue', Arial, sans-serif;
           line-height: 1.6;
           color: #202122;
           background-color: #f8f9fa;
           padding: 0;
           margin: 0;
       }
       
       .container {
           max-width: 1200px;
           margin: 0 auto;
           padding: 0 20px;
       }
       
       /* 页面横幅 - 确保显示 */
       .pagebanner {
           background-color: #0066cc;
           color: white;
           padding: 25px 0;
           text-align: center;
           margin-bottom: 20px;
           width: 100%;
       }
       
       .pagebanner h1 {
           font-size: 2.5rem;
           margin: 0;
           padding: 0;
           color: white;
           border-bottom: none;
           font-weight: bold;
       }
       
       .pagebanner p {
           font-size: 1.2rem;
           margin: 10px 0 0 0;
           opacity: 0.9;
       }
       
       /* 主要内容区域 */
       .mw-body {
           background-color: white;
           box-shadow: 0 0 10px rgba(0,0,0,0.1);
           margin: 20px auto;
           padding: 40px;
           border-radius: 5px;
       }
       
       h1 {
           color: #0066cc;
           border-bottom: 2px solid #0066cc;
           padding-bottom: 15px;
           margin-bottom: 25px;
           font-size: 2rem;
       }
       
       h2 {
           color: #0066cc;
           margin: 35px 0 20px;
           padding-bottom: 10px;
           border-bottom: 1px solid #eaeaea;
           font-size: 1.6rem;
       }
       
       h3 {
           color: #333;
           margin: 25px 0 15px;
           font-size: 1.3rem;
       }
       
       p {
           margin-bottom: 18px;
           font-size: 1rem;
       }
       
       /* 信息框样式 */
       .infobox {
           background-color: #f8f9fa;
           border: 1px solid #a2a9b1;
           border-collapse: collapse;
           margin: 0 0 20px 20px;
           float: right;
           clear: right;
           width: 320px;
           font-size: 14px;
       }
       
       .infobox caption {
           font-weight: bold;
           background-color: #0066cc;
           color: white;
           padding: 8px;
           font-size: 16px;
       }
       
       .infobox th, .infobox td {
           border: 1px solid #a2a9b1;
           padding: 10px;
           vertical-align: top;
       }
       
       .infobox th {
           text-align: left;
           background-color: #e6f2ff;
           width: 40%;
           font-weight: 600;
       }
       
       /* 图片样式 */
       .thumb {
           float: right;
           clear: right;
           margin: 0 0 20px 20px;
           background-color: #f8f9fa;
           border: 1px solid #c8ccd1;
           padding: 5px;
           max-width: 300px;
       }
       
       .thumbinner {
           padding: 5px;
           text-align: center;
           overflow: hidden;
       }
       
       .thumbimage {
           width: 100%;
           height: auto;
           display: block;
           background-color: #e6e6e6;
           min-height: 150px;
           display: flex;
           align-items: center;
           justify-content: center;
           color: #666;
           font-style: italic;
       }
       
       .thumbcaption {
           font-size: 14px;
           padding: 8px 5px 3px;
           text-align: left;
           line-height: 1.4;
       }
       
       /* 列表样式 */
       ul, ol {
           margin-left: 25px;
           margin-bottom: 20px;
       }
       
       li {
           margin-bottom: 10px;
           line-height: 1.5;
       }
       
       /* 引用样式 */
       .listing {
           margin: 20px 0;
           padding: 15px;
           border-left: 4px solid #0066cc;
           background-color: #f8f9fa;
           border-radius: 0 5px 5px 0;
       }
       
       .listing .name {
           font-weight: bold;
           font-size: 1.1rem;
           margin-bottom: 8px;
           color: #0066cc;
       }
       
       .listing .type {
           font-style: italic;
           color: #666;
           margin-bottom: 10px;
           font-size: 0.95rem;
       }
       
       .listing p {
           margin-bottom: 8px;
           font-size: 0.95rem;
       }
       
       /* 快速事实框 */
       .quick-facts {
           background-color: #e6f2ff;
           border: 1px solid #a2a9b1;
           padding: 20px;
           margin: 20px 0;
           border-radius: 5px;
           clear: both;
       }
       
       .quick-facts h3 {
           margin-top: 0;
           border-bottom: none;
           color: #0066cc;
       }
       
       .quick-facts ul {
           margin-bottom: 0;
       }
       
       /* 警告框样式 */
       .warning {
           background-color: #fff3cd;
           border: 1px solid #ffeaa7;
           border-radius: 5px;
           padding: 20px;
           margin: 25px 0;
           border-left: 4px solid #ffc107;
       }
       
       .warning strong {
           color: #856404;
       }
       
       /* 导航框样式 */
       .routebox {
           border: 1px solid #a2a9b1;
           width: 100%;
           margin: 30px auto;
           clear: both;
           font-size: 14px;
           text-align: center;
           padding: 10px;
           background-color: #f8f9fa;
       }
       
       .routebox .routebox-title {
           background-color: #e6f2ff;
           padding: 8px;
           font-weight: bold;
           font-size: 16px;
       }
       
       /* 内容清除浮动 */
       .content-section {
           overflow: hidden;
           margin-bottom: 10px;
       }
       
       /* 响应式设计 */
       @media (max-width: 768px) {
           .infobox {
               float: none;
               width: 100%;
               margin: 20px 0;
           }
           
           .thumb {
               float: none;
               margin: 20px auto;
               display: block;
               max-width: 100%;
           }
           
           .mw-body {
               padding: 20px;
           }
           
           .pagebanner h1 {
               font-size: 2rem;
           }
       }
       
       /* 维基样式标签 */
       .wiki-tags {
           margin-top: 30px;
           padding-top: 15px;
           border-top: 1px solid #eaeaea;
           font-size: 14px;
           color: #666;
       }
       
       /* 确保所有内容可见 */
       .clearfix::after {
           content: "";
           clear: both;
           display: table;
       }
   </style>

</head> <body>

Racha Island

Tropical paradise in the Andaman Sea

Racha Island
                                   Batok-Bay.jpg
Batok Beach on Racha Yai
Country Thailand
Region Andaman Coast
Province Phuket
Location Andaman Sea, 12 km south of Phuket
Coordinates 7°36′N 98°22′E
Total islands 2 (Racha Yai & Racha Noi)
Area 7.9 km²
Highest elevation 189 m (Racha Yai)
Population 150 (permanent)
~500 (tourist capacity)
Languages Thai, English (tourist areas)
Currency Thai baht (THB)
Time zone UTC+7

Racha Island (Thai: เกาะราชา, pronounced [kɔ̀ʔ rāː.tɕʰāː]), also known as Raya Island, is an island group in the Andaman Sea off the southern coast of Phuket Province, Thailand. Located approximately 12 kilometers south of Phuket, the islands are renowned for their pristine white sand beaches, crystal-clear turquoise waters, and exceptional diving opportunities.

Quick Facts

  • Best time to visit: November to April (dry season)
  • Getting there: 30-45 minutes by speedboat from Phuket
  • Main activities: Diving, snorkeling, beach relaxation
  • Accommodation: Luxury resorts to budget bungalows
  • Currency: Thai baht (cash preferred on the island)

Understand

                           Racha-Yai-dive-spots-map.jpg
Map showing Racha Yai and Racha Noi

Racha Island consists of two main islands: Racha Yai (Big Racha) and Racha Noi (Little Racha), located about 5 kilometers apart. Racha Yai is the larger and more developed island, featuring several beautiful bays with white sand beaches, while Racha Noi is smaller, steeper, and largely undeveloped, known primarily for its exceptional dive sites.

The name "Racha" derives from the Thai word for "king" or "royalty," reflecting the island's historical use as a private retreat for the Thai royal family. While tourism has developed since the 1990s, the islands maintain a more tranquil atmosphere compared to bustling Phuket.

History

Racha Island served as a private retreat for the Thai royal family, particularly King Rama V (Chulalongkorn), who visited in the early 20th century. The island remained relatively undeveloped until the 1990s when tourism began with the establishment of the first resort.

Following the 2004 Indian Ocean tsunami, which caused significant damage to the island's infrastructure, reconstruction efforts were undertaken with improved facilities. Since then, Racha Island has developed into a popular destination while maintaining environmental conservation efforts.

Orientation

Racha Yai (7.8 km²) features several beautiful bays, with Batok Beach (also known as Ao Batok) on the eastern side serving as the main arrival point and center of tourist activity. The interior is hilly, with the highest point reaching 189 meters. A small permanent population resides here, primarily working in tourism, fishing, or coconut farming.

Racha Noi (3.4 km²), located about 5 kilometers south, is largely uninhabited with dramatic cliffs and rocky outcrops. It's renowned among divers for its excellent dive sites with abundant marine life.

Climate

Racha Island experiences a tropical monsoon climate with two distinct seasons:

  • Dry season (November to April): Characterized by calm seas, minimal rainfall, and lower humidity. This is the peak tourist season with optimal conditions for diving and beach activities.
  • Wet season (May to October): Features higher rainfall, particularly in September and October, with occasional storms that can disrupt boat services. Some facilities may reduce operations during this period.

Average temperatures range from 25°C to 32°C throughout the year, with water temperatures between 27°C and 30°C.

Get in

By boat

The only way to reach Racha Island is by boat from Phuket. Most boats depart from Chalong Bay on Phuket's southeast coast.

Speedboat transfers
Transportation

Departures: Chalong Bay, Phuket

Multiple departures daily 08:00-17:00

One way: 600-800 THB, Round trip: 1,200-1,500 THB

Journey time: 30-45 minutes. Most resorts offer transfer services for guests.

Ferry services
Transportation

Departures: Chalong Bay, Phuket

1-2 departures daily

One way: 400-600 THB, Round trip: 800-1,000 THB

Journey time: 1.5-2 hours. Slower but more economical option.

By tour

Many visitors opt for day tours from Phuket, which typically include round-trip transportation, lunch, and activities like snorkeling. These can be booked through hotels or tour operators throughout Phuket.

               Weather advisory: During the monsoon season (May-October), boat services may be cancelled due to rough seas. Check weather forecasts and confirm boat schedules in advance.

Get around

Racha Yai is small enough to explore on foot, but transportation options include:

  • Walking: The most common way to get around, especially between nearby beaches
  • Bicycle rentals: Available at some resorts (200-300 THB/day)
  • Motorcycle taxis: Available at the main pier (50-100 THB per ride)
  • Resort shuttles: Most resorts provide transportation to/from the pier

Note that there are no paved roads covering the entire island, with most paths being dirt or gravel. Racha Noi has no transportation infrastructure and is accessible only by boat for diving excursions.

See

Beaches

Batok Beach (Ao Batok)
Beach

Eastern side of Racha Yai

The largest and most popular beach on Racha Yai, featuring a beautiful crescent of powdery white sand and clear turquoise waters. This is the main arrival point for visitors and offers several restaurants, bars, and water sports facilities. Excellent for swimming and sunbathing.

Raya Bay
Beach

Eastern side of Racha Yai, north of Batok Beach

A sheltered bay with calm waters, making it ideal for swimming and kayaking. Several resorts are located here, along with restaurants and a dive center. The bay offers beautiful views of passing boats and the surrounding hills.

Kon Kare Bay
Beach

Western side of Racha Yai

A smaller, more secluded bay with excellent snorkeling opportunities directly from the beach. The bay is protected from prevailing winds, creating calm conditions perfect for observing marine life in the clear waters.

Ter Bay
Beach

Western side of Racha Yai

A quiet beach accessible via a short walk from the main paths. Less developed than Batok Beach, offering a more peaceful atmosphere for relaxation. Good snorkeling can be found around the rocky outcrops at either end of the beach.

Viewpoints

Racha Yai Viewpoint
Viewpoint

Highest point of Racha Yai

Accessible via a hiking trail, this viewpoint offers panoramic vistas of both sides of the island, with spectacular views of Batok Beach and the surrounding Andaman Sea. The hike takes approximately 45 minutes from Batok Beach.

Do

Diving and snorkeling

Racha Island is considered one of Thailand's premier diving destinations, with excellent visibility (often 20-30 meters) and diverse marine life. Both Racha Yai and Racha Noi offer outstanding dive sites suitable for all experience levels.

Racha Noi Bay
Dive site

Southern side of Racha Noi

Depth: 10-30m | Level: Intermediate-Advanced

Known for its hard coral gardens and pelagic sightings. Strong currents sometimes present, attracting larger marine life including occasional manta rays and whale sharks (November-April).

Staghorn Reef
Dive site

East of Racha Noi

Depth: 5-18m | Level: Beginner-Intermediate

Features extensive staghorn coral formations creating a beautiful underwater landscape. Abundant reef fish including angelfish, butterflyfish, and parrotfish.

Bungalow Bay
Dive site

Eastern side of Racha Yai

Depth: 5-15m | Level: Beginner

A sheltered site ideal for beginners and check dives. Calm conditions with minimal current. Healthy coral formations and abundant marine life including moray eels, octopus, and various reef fish.

Marita Bay
Dive site

Western side of Racha Yai

Depth: 10-25m | Level: Intermediate

Known for its swim-throughs and diverse fish life. The site features granite boulders creating interesting formations inhabited by lionfish, scorpionfish, and occasionally leopard sharks.

Dive operators: Several dive centers operate on Racha Yai, offering courses, equipment rental, and guided dives. Two-tank dive trips typically cost 2,500-3,500 THB. Snorkeling trips are also available for 800-1,500 THB.

Other activities

  • Snorkeling: Excellent snorkeling can be enjoyed directly from many beaches, particularly Kon Kare Bay and Ter Bay. Equipment rental available (150-300 THB/day).
  • Kayaking: Explore the coastline by kayak, available for rent at most resorts (300-500 THB/hour).
  • Fishing: Join a fishing trip or charter a boat for private fishing (from 3,000 THB/half-day).
  • Hiking: Several trails cross Racha Yai, offering opportunities to explore the island's interior and enjoy panoramic views.
  • Spa treatments: Luxury resorts offer traditional Thai massages and spa treatments (from 1,000 THB).
  • Beach volleyball: Courts available at Batok Beach.

Buy

Shopping options on Racha Island are limited but sufficient for basic needs:

  • Small shops: Located near the pier and at Batok Beach, selling snacks, drinks, sunscreen, and basic toiletries
  • Souvenir shops: Offering local crafts, postcards, and Racha Island memorabilia
  • Resort boutiques: Higher-end shops at luxury resorts selling clothing, jewelry, and souvenirs

Money: ATMs are available but limited. Credit cards are accepted at most resorts and restaurants, but cash (Thai baht) is essential for smaller purchases. It's advisable to bring sufficient cash from Phuket.

Eat

Dining options on Racha Island range from casual beachfront eateries to upscale resort restaurants. Seafood is a highlight, with fresh catches available daily.

Raya Restaurant
Restaurant • Thai • Seafood

Batok Beach, Racha Yai

Open daily 08:00-22:00

Main dishes: 200-500 THB

Popular beachfront restaurant serving authentic Thai cuisine with an emphasis on fresh seafood. Try the grilled lobster, tom yum goong, or green curry. Beautiful sunset views.

Earth Cafe
Restaurant • International • Vegetarian-friendly

Raya Bay, Racha Yai

Open daily 07:00-21:00

Main dishes: 180-400 THB

Casual dining with a mix of Thai and Western dishes. Good vegetarian options and excellent fruit shakes. Friendly service and relaxed atmosphere.

The Racha Resort Restaurants
Restaurant • International • Fine dining

The Racha Resort, Batok Beach

Various operating hours

Main dishes: 400-1,200 THB

Several dining options within the luxury resort, including Mediterranean cuisine at Fire Grill, Asian fusion at Sunset Beach Restaurant, and international dishes at The Earth Cafe. Reservations recommended for dinner.

Drink

Bars and drinking establishments are concentrated around Batok Beach, offering tropical cocktails, local beers, and non-alcoholic beverages.

Summer Bar
Bar • Beachfront

Batok Beach, Racha Yai

Open daily 10:00-24:00

Cocktails: 200-350 THB, Beer: 100-150 THB

Popular beach bar with comfortable seating directly on the sand. Extensive cocktail menu and friendly service. Perfect spot for sunset drinks.

Siam Bar
Bar • Lounge

Near the pier, Racha Yai

Open daily 16:00-01:00

Cocktails: 180-300 THB, Beer: 80-120 THB

Lively bar popular with both tourists and island workers. Pool table available and occasional live music. Good selection of Thai whiskeys.

Note: Most resorts have their own bars, often with beautiful settings and higher prices. Alcohol is generally more expensive on the island than on the mainland due to transportation costs.

Sleep

Racha Island offers accommodation ranging from luxury villas to budget bungalows. Advance reservations are recommended, especially during peak season (November-April).

The Racha
Luxury resort • ⭐⭐⭐⭐⭐

Batok Beach, Racha Yai

+66 76 355 455

From 12,000 THB/night

Luxury resort featuring 85 villas with private pools, direct beach access, and panoramic sea views. Facilities include three restaurants, two bars, a spa, fitness center, and dive center. The island's most upscale accommodation option.

Raya Resort
Mid-range resort • ⭐⭐⭐

Raya Bay, Racha Yai

+66 76 355 215

From 3,500 THB/night

Comfortable resort offering bungalow-style accommodation with sea or garden views. Restaurant, bar, and dive center on site. Good value for money with friendly service.

Ban Raya Resort
Mid-range resort • ⭐⭐⭐

South of Batok Beach, Racha Yai

+66 76 355 388

From 2,800 THB/night

Secluded resort nestled in tropical gardens with direct beach access. Simple but comfortable bungalows with private bathrooms. Restaurant and dive facilities available.

Bungalow Raya
Budget accommodation • ⭐⭐

Raya Bay, Racha Yai

+66 76 355 146

From 1,200 THB/night

Basic but clean bungalows with fan or air conditioning. Shared bathroom facilities. Restaurant on site serving Thai and Western food. Best budget option on the island.

Stay safe

               Marine safety: Always heed warning flags on beaches and follow instructions from lifeguards when present. Some areas around Racha Noi have strong currents.
  • Sun protection: The tropical sun is intense. Use high SPF sunscreen, wear a hat, and stay hydrated.
  • Marine life: Be aware of sea urchins, jellyfish, and sharp coral when swimming or snorkeling. Wear protective footwear when appropriate.
  • Money and valuables: Use safety deposit boxes at your accommodation and avoid leaving valuables unattended on beaches.
  • Medical facilities: Only basic first aid is available on the island. Serious medical issues require evacuation to Phuket. Ensure you have adequate travel insurance.
  • Water safety: Drink bottled water rather than tap water. Ice in established restaurants and resorts is generally safe.
  • Boating safety: Always wear life jackets when on boats. Check weather conditions before any boat trips.

Connect

  • Mobile reception: Good coverage from major Thai providers (AIS, DTAC, TrueMove) on Racha Yai. Signal may be weaker in some bays and generally poor on Racha Noi.
  • Internet: Wi-Fi available at resorts and some restaurants, though speeds may be slower than on the mainland. Some accommodations include free Wi-Fi, while others charge a daily fee.
  • Postal services: No post office on the island. Mail and postcards can be sent from Phuket.

Go next

  • Phuket – Thailand's largest island, offering extensive tourist facilities, vibrant nightlife, and cultural attractions
  • Phi Phi Islands – Famous archipelago known for stunning beaches, dramatic limestone cliffs, and vibrant nightlife
  • Coral Island (Koh Hae) – Small island near Phuket, popular for day trips with good snorkeling and water sports
  • Krabi – Mainland province with beautiful beaches, limestone formations, and access to multiple islands
  • Similan Islands – Protected marine park renowned for some of Thailand's best diving (seasonal access November-April)
Andaman Sea Islands
                   North: Phuket |
                   South: Phi Phi Islands

Create category

Template:RelatedCommons

This city travel guide to Sandbox is a usable article. It has information on how to get there and on restaurants and hotels. An adventurous person could use this article, but please feel free to improve it by editing the page.

</body> </html>