schema_worldfamousplaces = StructType([
StructField("PlaceName", StringType(), True),
StructField("Country", StringType(), True),
StructField("City", StringType(), True),
StructField("Annual_Visitors_Millions", DoubleType(), True),
StructField("Type", StringType(), True),
StructField("UNESCO_World_Heritage", StringType(), True),
StructField("Year_Built", StringType(), True),
StructField("Entry_Fee_USD", IntegerType(), True),
StructField("Best_Visit_Month", StringType(), True),
StructField("Region", StringType(), True),
StructField("Tourism_Revenue_Million_USD", IntegerType(), True),
StructField("Average_Visit_Duration_Hours", DoubleType(), True),
StructField("Famous_For", StringType(), True),
])