Tuesday, June 21, 2005

satellite imagery of europe in Google maps

Google recently added satellite imagery of the whole world to its fast mapping service. Until now only the united states could enjoy their fast mapping service. But we're very pleased to see the whole world getting visible in google maps

Very interesting is the imagery of Africa. A part of the world where not much internet-mapping is available (in most cases, no maps are available). Maybe the google service can aid scientists and development workers there by providing easy-to-use, fast imagery of the region. Personally i visited Cameroon, Kenya and Guinee and could easily point out the various trips i made to maintains and cities.

Friday, June 10, 2005

Variables in CF

Try this out...

<cfoutput>
<cfset x["y.z"] = "a">
#x.y.z#
<cfset x.y.z = "b">
#x.y.z#
#x["y.z"]#
<cfdump var="#x#">
</cfoutput>


the amazing world of CF