Python を使用して、緯度/経度の値を含む csv ファイルから KML ファイルを生成しています。私はこの例を使用しています:
http://l0u15.wordpress.com/2008/09/30/convert-csv-to-kml-for-google-maps/
これをマップすると:
<Placemark>
<name>Disney's Hollywood Studios</name>
<description>Disney's Hollywood Studios is a theme park at the Walt Disney World Resort. Spanning 135 acres in size, its theme is show business, drawing inspiration from the heyday of Hollywood in the 1930s and 1940s. The third park built at the resort, it opened on May 1, 1989 as Disney-MGM Studios. In 2007, the park hosted approximately 9.51 million guests.</description>
<Point>
<coordinates>-81.561995,28.357403</coordinates>
</Point>
</Placemark>
問題なく動作します!ただし、これ:
<Placemark>
<name>Beyond Basics Medical Practice</name>
<description>213031 321 Middlefield Rd Ste 275 Menlo Park CA 94025 (650) 815-9577 1/4/2012 San Francisco Unknown</description>
<Point>
<coordinates>-122.168048,37.456523</coordinates>
</Point>
</Placemark>
全く現れません!
KML にはある種のインデント要件がありますか?