Friday, February 10, 2012

Calling Google map web service API using asp.net MVC?

I found the following code to call Google map web service API:-

public static class Geocoder{

private static string _GoogleMapsKey = Config.getAppSetting(“GoogleMapsKey”);

public static Geolocation? ResolveAddress(string query)

{if (string.IsNullOrEmpty(_GoogleMapsKey))

_GoogleMapsKey = ConfigurationManager.AppSettings["Google…

string url = “http://maps.google.com/maps/geo?q={0}%26amp;output=xml%26amp;key=” + _GoogleMapsKey;

url = String.Format(url, query);

XmlNode coords = null;

try{

string xmlString = GetUrl(url);

XmlDocument xd = new XmlDocument();

xd.LoadXml(xmlString);

XmlNamespaceManager xnm = new XmlNamespaceManager(xd.NameTable);

coords = xd.GetElementsByTagName(“coordinates”)[0…

}catch { }

Geolocation? gl = null;

if (coords != null){

string[] coordinateArray = coords.InnerText.Split(‘,’);

if (coordinateArray.Length %26gt;= 2)

{gl = new Geolocation(Convert.ToDecimal(coordinate… Convert.ToDecimal(coordinateArray[0].ToS…

}

}return gl;

}public static Geolocation? ResolveAddress(string address, string city, string state, string postcode, string country)

{return ResolveAddress(address + “,” + city + “,” + state + “,” + postcode + ” “ + country);}

private static string GetUrl(string url)

{string result = string.Empty;

System.Net.WebClient Client = new WebClient();

using (Stream strm = Client.OpenRead(url))

{StreamReader sr = new StreamReader(strm);

result = sr.ReadToEnd();

}return result;}}

public struct Geolocation

{public decimal Lat;

public decimal Lon;

public Geolocation(decimal lat, decimal lon){

Lat = lat;

Lon = lon;}

public override string ToString()

{return “Latitude: “ + Lat.ToString() + ” Longitude: “ + Lon.ToString();

}public string ToQueryString()

{return “+to:” + Lat + “%2B” + Lon;}}

So i created a new model class that contains that following code, and to test my work i have wrote the following in the controller

Geocoder.ResolveAddress(“University road”,”rajkot”,”gujarat”,”",”India”)



But i still do not know how to create the associated view to display the map?

Thanks in advance for any help.Calling Google map web service API using asp.net MVC?
check this link

http://code.google.com/apis/maps/

Google Static Maps API Locates to Wrong Location?

In a project I am using both the Javascript and Static Google Maps APIs. The problem I am running into is that the Static Maps API is locating to the wrong location. I am sending it Latitude and Longitude coordinates and it will ends trying to convert it to an address or something.



Try putting: 37.133212 -113.504478 into maps.google.com and you will see what I mean, I want it to show the green arrow location not the red marker location.



Any help would be appreciated.Google Static Maps API Locates to Wrong Location?
Calling directly from maps.google.com is not the same as calling to maps.google.com/staticmap. Are you declaring your lat-long pair using the markers parameter? I don't use the static maps, since I want the more flexible options of the JS API, but here's an example that I verified in Firefox:



%26lt;html%26gt;

%26lt;head%26gt;%26lt;/head%26gt;

%26lt;body%26gt;

%26lt;p%26gt;

%26lt;img src="http://maps.google.com/staticmap?ce鈥?/%26gt;

%26lt;/p%26gt;

%26lt;/body%26gt;

%26lt;/html%26gt;



The service URL for the request is:



http://maps.google.com/staticmap



Since Y!A will no doubt truncate the href due to length and lack of blanks, the parameters of the URL for the href are:



center = 37.133212, -113.504478

size = 512x512

maptype = mobile

markers = 37.133212, -113.504478, reda %7C37.133212, -113.504478

key = {your key}



Remove all the blanks and glue these parameters together in URL form.Google Static Maps API Locates to Wrong Location?
Google is not perfect. You need to notify them of any errors you find.



I once was searching for motels in Burbank, CA, and it showed me a really nice Best Western at a very specific address -- except that when I called that motel, it was in Pleasanton, CA, about 300 miles away!



I checked and rechecked, and it just kept coming up Best Western Pleasanton, in Burbank.



I notified Google about the problem, but I have no idea if they ever fixed it. (Ended up staying at a Radisson Suites)

Calling Google map web service API using asp.net MVC?

I found the following code to call Google map web service API:-

public static class Geocoder{

private static string _GoogleMapsKey = Config.getAppSetting(“GoogleMapsKey”);

public static Geolocation? ResolveAddress(string query)

{if (string.IsNullOrEmpty(_GoogleMapsKey))

_GoogleMapsKey = ConfigurationManager.AppSettings["Google…

string url = “http://maps.google.com/maps/geo?q={0}%26amp;output=xml%26amp;key=” + _GoogleMapsKey;

url = String.Format(url, query);

XmlNode coords = null;

try{

string xmlString = GetUrl(url);

XmlDocument xd = new XmlDocument();

xd.LoadXml(xmlString);

XmlNamespaceManager xnm = new XmlNamespaceManager(xd.NameTable);

coords = xd.GetElementsByTagName(“coordinates”)[0…

}catch { }

Geolocation? gl = null;

if (coords != null){

string[] coordinateArray = coords.InnerText.Split(‘,’);

if (coordinateArray.Length %26gt;= 2)

{gl = new Geolocation(Convert.ToDecimal(coordinate… Convert.ToDecimal(coordinateArray[0].ToS…

}

}return gl;

}public static Geolocation? ResolveAddress(string address, string city, string state, string postcode, string country)

{return ResolveAddress(address + “,” + city + “,” + state + “,” + postcode + ” “ + country);}

private static string GetUrl(string url)

{string result = string.Empty;

System.Net.WebClient Client = new WebClient();

using (Stream strm = Client.OpenRead(url))

{StreamReader sr = new StreamReader(strm);

result = sr.ReadToEnd();

}return result;}}

public struct Geolocation

{public decimal Lat;

public decimal Lon;

public Geolocation(decimal lat, decimal lon){

Lat = lat;

Lon = lon;}

public override string ToString()

{return “Latitude: “ + Lat.ToString() + ” Longitude: “ + Lon.ToString();

}public string ToQueryString()

{return “+to:” + Lat + “%2B” + Lon;}}



So i created a new model class that contains that above code, and to test my work i have wrote the following in the controller



Geocoder.ResolveAddress(“University road”,”rajkot”,”gujarat”,”",”India”)



But i still do not know how to create the associated view to display the map?

Thanks in advance for any help.Calling Google map web service API using asp.net MVC?
the code is it clear , try to organize it up.

How to find out the exact distance in feet, miles, etc., between points on Google Earth?

I've got a number of frequently visited pointed "thumbtacked" on Google Earth and was wondering if it's possible to find out the exact distance between points, not just the latitude and longitude. Or is there another site that could complement Google Earth that would give the distance between points in feet, yards, miles, etc.?How to find out the exact distance in feet, miles, etc., between points on Google Earth?
Hey Jesus

http://geodistance.com

I have samsung galaxy s. my battery drains out in morning completely even I had slept for just 4 hours.?

Battery was fully charged. Strange fact is, it works fine during the day. But I guess battery drains out when phone is idle. I have wi-fi sleep policy is set to 'never'. Wifi is off most of the time. Never used google latitude. Can any one tell me please the solution. :( If it cant be cured should I leave my phone on charge whole night?I have samsung galaxy s. my battery drains out in morning completely even I had slept for just 4 hours.?
just look for applications that might have been open.
  • cosmetic products
  • Car GPS inside Google Earth !?

    Hallow people, I tried everything and just didn't get it right !!

    I really want to make some project using google earth and i really want to use my car GPS. I found out that inside of the device, it has a place that shows the latitude and longitude.

    Exemple:

    Latitude: S21.20608o

    Longitude: O47.80757o

    The real question is: how can i translate this information that I had from my car GPS into informations that can be used inside Google Earth?

    Thanks for your attention.

    :)Car GPS inside Google Earth !?
    Take just the latitude and longitude numbers, no letters or o signs.

    If the Latitude is south put a - in front of it.

    If the Longitude is west put a - in front of it.

    Put them into the google earth search box latitude then longitude with a coma between them.



    That should work.

    Goggle earth can cope with both decimal degrees (21.20308) and degrees, minutes, seconds (21'12"13.34) and should know how to convert between them if it needs to.Car GPS inside Google Earth !?
    Hopefully you can answer me back-%26gt;

    What do you mean "inside the device"?



    Based on what you said, Here is what I can tell you.

    First, if you simply get the Lat/Long from the device, you can put it into Google Earth and find the location based on the Search feature.

    I am not sure, on my supercomputer I have split myself into the GE files and made the search feature awesome :P

    How do I figure out how to convert latitude and longitude?

    I am working on a project for work and am sifting through reports that have various different types of latitude/longitude formats. I have to input them in decimal form ( eg.36.6521, -82.7722)...problem is - for one I will get ( eg N 33 2 33.8177, 0824149W ) and then yet another form ( eg. 36'36'35'.21N, 89'39'00.10W) I can't tell the difference or figure out how to even input the last two types of numbers into a converter in order to get the decimal form...and I particularly don't understand what the difference between the two last types is. I've found stuff talking about minutes, seconds, etc., and just ended up more confused. Google maps didn't help, I check my locations after converting the numbers and they were on the opposite side of the state that I was working in..any help?How do I figure out how to convert latitude and longitude?
    I don't know about the second one, but the last one is in Degrees, minutes, seconds (or DMS) form. There are 60 minutes in a degree and 60 seconds in a minute. So to convert from

    100d 30' 0s You multiply 30' times 1/60 of a degree to get 30/60 or .5 of a degree.



    There are calculators out there to do this for you if you want:

    http://www.satsig.net/degrees-minutes-se鈥?/a>



    The second format might still be DMS, but hard to tell.



    Finally, just the raw lat/lon numbers aren't sufficient to specify a place. You also have to have a datum with it. It's common to see something like WGS-84, but that's not always true. Other datums like NAD-27 will have offsets.

    How can I map a list of latitudes and longitudes?

    I have a list of latitudes and longitudes in Excel. I want to display these points on a map without looking up each location individually and saving it. How can this be done? I would prefer to do this in google earth or google maps.How can I map a list of latitudes and longitudes?
    I don't know. But I think your supposed to use a formula. Try finding it!

    Why is my battery light on my latitude d505 laptop blinking orange?

    i have a latitude d505 laptop and just all of a sudden the battery light started blinking with an orange light i have checked on google and i can't believe some of the dumb answers and solutions i have seen one person said take the battery out and blow it and put it back in so i was getting desperate and i even did that but the light keeps blinking the battery is fully charged and it blinks when it is plugged in or not the one answer i got was it is defective and needs to be replaced as the cells have gone bad but before i dish out 25 or 30 dollars i need someone who really know the answer i even got a sidestep answer from dell which did not work someone please help with a real answer thank you johnWhy is my battery light on my latitude d505 laptop blinking orange?
    the best information should be the dell website http://support.dell.com/support/index.as鈥?/a> give it a try again...

    Wierd google earth thing?

    i was on google earth and look wat i found



    %26lt;?xml version="1.0" encoding="UTF-8"?%26gt;

    %26lt;kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/鈥?xmlns:kml="http://www.opengis.net/kml/2.鈥?xmlns:atom="http://www.w3.org/2005/Atom"鈥?br>
    %26lt;Document%26gt;

    %26lt;name%26gt;KmlFile%26lt;/name%26gt;

    %26lt;StyleMap id="msn_ylw-pushpin"%26gt;

    %26lt;Pair%26gt;

    %26lt;key%26gt;normal%26lt;/key%26gt;

    %26lt;styleUrl%26gt;#sn_ylw-pushpin%26lt;/styleUrl鈥?br>
    %26lt;/Pair%26gt;

    %26lt;Pair%26gt;

    %26lt;key%26gt;highlight%26lt;/key%26gt;

    %26lt;styleUrl%26gt;#sh_ylw-pushpin%26lt;/styleUrl鈥?br>
    %26lt;/Pair%26gt;

    %26lt;/StyleMap%26gt;

    %26lt;Style id="sh_ylw-pushpin"%26gt;

    %26lt;IconStyle%26gt;

    %26lt;scale%26gt;1.3%26lt;/scale%26gt;

    %26lt;Icon%26gt;

    %26lt;href%26gt;%26lt;/href%26gt;http://maps.google.com/mapfiles/kml/push鈥?/a>

    %26lt;/Icon%26gt;

    %26lt;hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/%26gt;

    %26lt;/IconStyle%26gt;

    %26lt;/Style%26gt;

    %26lt;Style id="sn_ylw-pushpin"%26gt;

    %26lt;IconStyle%26gt;

    %26lt;scale%26gt;1.1%26lt;/scale%26gt;

    %26lt;Icon%26gt;

    %26lt;href%26gt;%26lt;/href%26gt;http://maps.google.com/mapfiles/kml/push鈥?/a>

    %26lt;/Icon%26gt;

    %26lt;hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/%26gt;

    %26lt;/IconStyle%26gt;

    %26lt;/Style%26gt;

    %26lt;Placemark%26gt;

    %26lt;name%26gt;the weird green thing%26lt;/name%26gt;

    %26lt;LookAt%26gt;

    %26lt;longitude%26gt;21.81523732737298%26lt;/longi鈥?br>
    %26lt;latitude%26gt;31.19123524016962%26lt;/latitu鈥?br>
    %26lt;altitude%26gt;0%26lt;/altitude%26gt;

    %26lt;range%26gt;366.3473274197301%26lt;/range%26gt;

    %26lt;tilt%26gt;0%26lt;/tilt%26gt;

    %26lt;heading%26gt;-7.026037763011613%26lt;/headin鈥?br>
    %26lt;altitudeMode%26gt;relativeToGround%26lt;/alt鈥?br>
    %26lt;/LookAt%26gt;

    %26lt;styleUrl%26gt;#msn_ylw-pushpin%26lt;/styleUrl鈥?br>
    %26lt;Point%26gt;

    %26lt;coordinates%26gt;21.816,31.190965668879鈥?br>
    %26lt;/Point%26gt;

    %26lt;/Placemark%26gt;

    %26lt;/Document%26gt;

    %26lt;/kml%26gt;



    wat is itWierd google earth thing?
    The correct coordinates are 31.19123524016962, 21.81523732737298



    (latitude first)



    The object at that location appears to be a drying lake. I see precipitates lining the shore, and the green color of the water comes from concentrated impurities in the water.



    EDIT: Ok, you geo-nerds, I admit it, I should have said "evaporites".Wierd google earth thing?
    Those coordinates point to Lake Nasser in Sudan. I don't see anything strange there.
  • facial moisturizer
  • Kubuntu on Dell Latitude C600 Screen Resolution?

    I've Googled like mad and found dozens of forums and wiki pages discussing this issue. Unfortunately they disagree and I can't make any of the solutions presented work.



    Majority of sources state that this laptop has 1400x1050 capability and (F2-Setup) tells me I have 8 Mb video ram, which should be enough for that -- but I can't get even 1024x768. A fresh install of Kubuntu 8.10 boots up to 800x600 with no option in System Settings-Display for anything better.



    I've tried editing xorg.conf in many ways; all fail. I can get 1024x768 at "Depth 16", which equates to thousands of colors, not millions, and which screws up Battle for Wesnoth, for example. I'm looking for 1400x1050 in millions of colors.



    1) Is there some weirdness about this model, with some LCD screens only good for 1024x768? I see some forum posts by C600 owners who get only this much, then say "problem solved". If so, how could I find out the true native resolution of my machine?



    2) What must I do to get the best resolution and depth out of what I have got? I need clear, complete instructions that assume nothing, since I'm a Linux novice. I'm willing to learn but the screen resolution issue must be solved before I can do anything practical.



    PLEASE do not try to answer this question unless you have a Dell Latitude C600 running Kubuntu 8.10 and you absolutely know the required procedure! Please do not Google and link me to a bunch of sites I've already read! At least half those sites are wrong and there's no obvious way to tell which.Kubuntu on Dell Latitude C600 Screen Resolution?
    wow, 8mb video ram, thats ancient... sorry though, it looks like you have tried all of the things I would have thought

    Funny Google Earth View From Space? True or Fake?

    I just stumble across youtube video (it's funny) in this website showing the google earth view from the space. Watch the video here:-



    http://about-myspace.com/earth/



    It also give you the exact longitude and latitude to view those places. See here:-



    Serious Ruts -- RR Maintenance Truck - St. Louis

    38掳37'10.65"N, 90掳11'11.70"W



    Don't Walk -- U-Turn Driver - Detroit

    42掳19'54.44"N, 83掳 2'54.19"W



    I Think I Can -- New York

    40掳42'16.47"N, 74掳 0'30.56"W



    Bush Pilot -- Airplane Home -- Oregon

    45掳24'28.31"N, 123掳0'27.67"W



    Stacked Up Planes -- Google Earth Double Exposure -- Venezuela

    10掳35'56.73"N, 66掳59'20.53"W



    Fill It Up -- Airplane Gas Station -- Oregon

    45掳25'30.77"N, 122掳38'3.77"W



    Area 51 - UFO Rest Stop - Nevada

    37掳14'40.34"N, 115掳49'11.76"W



    More Than One Space -- MiG-21 - Germany

    51掳21'44.43"N, 7掳33'29.13"E



    What do you think? Is it true or FAKE?



    Don't answer if you have not download the software and experience it yourself. Download here:-

    http://about-myspace.com/earth/Funny Google Earth View From Space? True or Fake?
    Im sure its real, I dont doubt its authenticity. I know that the whale skeleton is real.Funny Google Earth View From Space? True or Fake?
    that looks wierd %26amp; fake. the places look real but some of the objects could have been computer"ized"

    lolFunny Google Earth View From Space? True or Fake?
    could be true

    satellite cameras are being used to spy

    Google Earth Question!!!?

    in google earth i want to know what city and state in in when i type in the latitude and longitude. how do i do that?Google Earth Question!!!?
    Are you trying to cheat on homework? because, if you are, i hope you know you'll probably have it on a test, and cheating will hurt you more than it helps you.

    Dell Latitude D600 Ethernet Driver?

    Hello,

    I am trying to get Dell Latitude ethernet adaptor driver to install i tried all support drivers but it doesnt help, att all,



    I tried, google,yahoo search all website nothing helped.,



    The problem is i install new windows XP and i canot find network adoptor there i hell tried every thing .,

    but nothing is there



    Dell D600 Latitude I am having write now

    please help me provide what i can do ..

    please donot type dell.com support or driver guide etc .etc

    I need to know acurate information thank you.:)Dell Latitude D600 Ethernet Driver?
    If you want the driver for your Dell laptop, the best place to get it is at support.dell.com.

    You need to input the model you have, Latitude D600, and choose drivers.

    On the driver page, choose your computer's language, network for category and all for importance.

    This brings up 22 possible downloads.

    You then need to find the ones that apply to the network card in your computer that are labeled as drivers.

    Anything labeled as firmware is optional and will upgrade the operation of your card if applied. Utilities are also optional and are usually used to change operational settings of the card.

    There will be only one driver for your card that you have to download, everything else is optional.

    Once you have the driver, look at the device manager in WinXP.

    If the network card [ethernet adapter] is not showing there, then there should be an unknown device.

    Right click on the unknown device and choose update drivers and point the update wizard to the driver you downloaded.

    That should solve the problem.

    Calculating latitude/longitude for X, Y points?

    How can I calculate latitude/longitude for an X, Y point?



    Ex:

    Convert X: 6459382.30281, Y:1894064.05028999 to

    LAT: 34.198635,Long: -118.341894



    Please help, I am trying to mark map points using Google Map API, but the database has only X,Y points. Google Map API's GMarker requires lat/long to create a marker on the map.



    Thanks in advance. Happy New Year!Calculating latitude/longitude for X, Y points?
    What projection are your X,Y coordinates in? Doesn't look like UTM.



    Before you can calculate, you need to know what projection you are coming from.



    EDIT:

    Yes, I can tell they are northing and easting as well. But you need to know what coordinate system they are in. Whether it be UTM, MTM or whatever. Only then can you begin to convert.Calculating latitude/longitude for X, Y points?
    In order for you to place these co-ordinates on a map you will need to know whether the Latitude is North or South and the Longitude is East or West.

    I'm sorry I do not recognise the numbers you are converting from as those that can be related to a map. There appears to be something missing.
  • la mer
  • Longitude and Latitude help!!!!?

    hey guys my google earth has stopped working, so i need some help finding these longitude and latitude coordinates (they are cities):

    a.) 52N 0W

    b.) 50N 30E

    c.)1N 104E

    d.)10S 147E

    e.) 44S 173E

    f.) 30S 31E

    g.) 23S 43W

    h.) 34S 71 W



    thanks heaps :)Longitude and Latitude help!!!!?
    It's okay you don't need google earth for this. Use an atlas/world map..im sure if you google it, it'll come upLongitude and Latitude help!!!!?
    I've been able to enter Longitude and Latitude into Google Maps online, to find loacations of local mountains.

    You just need to find the right format to enter the data. I think omit the degree sign and use a comma to seperate long from lat, watch you + and - ..try help pages too.

    A number of site (like http://earthquake.usgs.gov/) use google map links to show data (epicenters of earchquates) You could link to one of their maps and figure out how to enter you coordinates.

    Ubuntu google chrome help?

    I use ubuntu 8.10 currently; Dell latitude c400.

    Ive been lagging like crazy whenever i open google chrome, It tends to drain all my computer memory and it causes the computer to overheat and just completely shut off.



    I Can't figure out whats causing this problem, its annoying to deal with basically whenever i open google chrome everything is laggy same goes with all my other internet browsers.

    Example: When i play browser games or mmorpg's lag is insane i disconnect without even connectining onto the game like Runescape.



    Has anyone encountered this before? if so please help me.Ubuntu google chrome help?
    Ubuntu 8.10 is now unsupported so the first thing I would suggest is an upgrade to at least Ubuntu 9.04



    How To Upgrade Ubuntu 8.10 (Intrepid Ibex) To 9.04 (Jaunty Jackalope) (Desktop %26amp; Server)

    http://www.howtoforge.com/how-to-upgrade鈥?/a>



    Ubuntu 9.04 (Jaunty Jackalope) User Guide

    http://ubuntuguide.org/wiki/Ubuntu:Jaunt鈥?/a>



    Google Chrome for Linux Download 32 bit .deb (For Debian/Ubuntu)

    http://www.google.com/chrome



    Note this is Beta software so there may be issues.



    If you want to go for a new Full installation of Linux I thoroughly recommend Linux Mint 8 Main Edition which is built upon Ubuntu 9.10 Its easy to install and easy to use plus it comes with much of the software you are likely to need preinstalled



    Linux Mint 8 Download

    http://www.linuxmint.com/edition.php?id=鈥?/a>



    The Perfect Desktop - Linux Mint 8 (Helena) Installation

    http://www.howtoforge.com/the-perfect-de鈥?/a>



    Linux Mint 8 Helena User Guide

    http://www.scribd.com/doc/23787138/Linux鈥?/a>



    You download the ISO. image of Linux Mint 8 then you need to create a Bootable LiveCD for installation



    Linux Mint 8 can also be run direct from the LiveCD from Booting up without touching your Hard Drive





    LUg.Ubuntu google chrome help?
    haven't experienced that.. maybe you should back up your files and upgrade to ubuntu 10.04? I really like it, and its faster from what I can tell.Ubuntu google chrome help?
    Install the latest version, Ubuntu 10.04 - it is very fast, stable and user friendly.

    What is your Google Earth position?

    You can right click on your position after placing a marker copy it and paste it anywhere. The other person copy it again and paste it in Google Earth.



    I stay here: (Copy all from %26lt; to %26gt; end and paste in Google Earth)



    %26lt;?xml version="1.0" encoding="UTF-8"?%26gt;

    %26lt;kml xmlns="http://earth.google.com/kml/2.0"%26gt;

    %26lt;Placemark%26gt;

    %26lt;name%26gt;Henk House%26lt;/name%26gt;

    %26lt;LookAt%26gt;

    %26lt;longitude%26gt;30.92794160119777%26lt;/longitude%26gt;

    %26lt;latitude%26gt;-29.88043228538145%26lt;/latitude%26gt;

    %26lt;range%26gt;426.3883912871975%26lt;/range%26gt;

    %26lt;tilt%26gt;-9.509656430747869e-011%26lt;/tilt%26gt;

    %26lt;heading%26gt;0.03122308219724931%26lt;/heading%26gt;

    %26lt;/LookAt%26gt;

    %26lt;styleUrl%26gt;root://styleMaps#default+nicon鈥?br>
    %26lt;Style%26gt;

    %26lt;IconStyle%26gt;

    %26lt;Icon%26gt;

    %26lt;href%26gt;root://icons/palette-3.png%26lt;/href%26gt;

    %26lt;w%26gt;32%26lt;/w%26gt;

    %26lt;h%26gt;32%26lt;/h%26gt;

    %26lt;/Icon%26gt;

    %26lt;/IconStyle%26gt;

    %26lt;/Style%26gt;

    %26lt;Point%26gt;

    %26lt;coordinates%26gt;30.92707438504097,-29.88040鈥?br>
    %26lt;/Point%26gt;

    %26lt;/Placemark%26gt;

    %26lt;/kml%26gt;What is your Google Earth position?
    not where you areWhat is your Google Earth position?
    My position is approximately 4,000 miles above the center of the earth and is on land.What is your Google Earth position?
    Singapore

    Google maps on my web site.?

    I am making a web site that a non-computer literate person has to edit.



    This individual can find a particular lognitud and latitude, but they cannot code it into the javascript.



    Should I create a backend page that adds and subtracts entries into an XML file and read that into my javascript file when rendering the google map?



    If not, then how can I dynamically include locations on the map?Google maps on my web site.?
    I think you can actually embed google maps to a site.



    Otherwise, if that doesn't work, your idea sounds great!

    Shadow length and depth on Dec 21 3PM for any latitude?

    I posted a question yesterday about the shadow length (see link below) and it was fully answered.

    http://answers.yahoo.com/question/index;_ylt=ArvbP573dkyTVLdet4Gin5_ty6IX;_ylv=3?qid=20111008122802AAFuRnB





    PART 1: To test that i built in excel the right formula I built a simple 3D model with Google Sketchup (a 3D tool that simulates shadows for specific latitudes among other things). What Sketchup drew does not match the result of formulas provided in my previous questions. (the link below includes a screenshot of the sketchup model showing latitude, day and time with all dimensions of the object and the shadow)

    https://premierpower.box.net/shared/m2544miqhrm8t9276agn

    I am not sure if i didn't use the formula correctly or if Sketchup has a bug. Any help is appreciated.



    PART 2: In addition, i need to calculate the depth of the shadow. In other words, the rod or object will project a shadow of length L at an angle (given that is 3PM DEC21 i assume the angle of the shadow is 45 degrees). If i draw a line from the rod/object going north until if forms a right triangle with end of the shadow that is what i call the shadow depth (6.05m in the sketchup model). Can i calculate the depth with simple trigonometry? Is 45 degrees correct?Shadow length and depth on Dec 21 3PM for any latitude?
    I answered your question yesterday. I'll answer Part 1 first, and come back shortly with Part 2.

    Part 1:
    In Google Sketchup, you used a location of N40.445, E17.415944, with a time zone of UTC+2 and a time of 3 PM on 12/21.

    My personal astronomy software shows that the sun then has an altitude of 19.147 degrees; so if you have a stick of height H, the shadow length should be
    L = H / tan(19.147) = 2.88 H

    In your example with Google Sketchup, the height is H=2.46 m, so I would say the length should be
    L = 2.46 x 2.88 m = 7.08 m

    This agrees within 1% with the length given by Sketchup (7.14 m), so my calculations are consistent with Sketchup.

    The formula in yesterday's answer, however, says
    L = 4.11 H

    Why are these two formulae for L different (4.11 vs 2.88)? The answer is that you're using the wrong time. My answer yesterday assumed a local solar time of 3 PM -- that is, three hours after the sun is due south. For the coordinates and time zone you gave today, the sun is due south not at noon but at 12:48 PM. If you set the time to 3:48 PM, Google Sketchup should agree closely with my result.

    (Note that from an astronomical point of view, UT+2 is not the proper time zone for a longitude of 17 degrees east; but time zones are determined by politics as much as astronomy.)

    ---

    Part 2:
    No, the sun's azimuth from south at 3 PM local solar time is not 45 degrees (unless you happen to be at the north or south pole). It's more complicated than that, and once again we have to use spherical trigonometry.

    Let's define the following:
    Z = azimuth of sun measured from south (0 if sun is due south, 45 if sun is in southwest, 90 if sun is in west, etc.)
    D = "depth" of shadow as you define it -- that is, the length of the north/south component of the shadow

    Like yesterday, we can split this problem into two parts. The easy part is one of simple trigonometry:

    D = L cos(Z)

    For instance, if the sun is due south, the depth equals the length. If the sun is due west, the depth is 0 (because the shadow runs along the east/west line).

    The more difficult part is calculating Z. I again refer you to the spherical triangle defined in yesterday's answer. At this point, we know all three sides (since we have calculated h, the azimuth of the sun) and angle A (45 degrees). Given this information, it's easy to use the law of sines to calculate the unknown angles.

    The angle of interest is B, which is related to Z as follows:
    Z = 180 - B

    The law of sines for spherical trigonometry says that
    sin(A)/sin(a) = sin(B)/sin(b) = sin(C)/sin(c)
    where A, B, and C are the angles of the vertices, and a, b, and c are the lengths of the opposite sides.

    We make use of the following:
    sin(A)/sin(a) = sin(B)/sin(b)

    Using the triangle defined yesterday, this becomes
    sin(45)/cos(h) = sin(180-Z) / sin(113.4)
    = sin(Z) / sin(113.4)

    Therefore,
    sin(Z) = sin(113.4) sin(45) / cos(h)
    Z = arcsin (0.64895 / cos(h))

    example:
    Let's use the coordinates mentioned above at 3:48 PM (three hours after the sun is due south). The altitude of the sun at that time is 13.66 degrees. Using the above formula, we get
    Z = arcsin (0.64895 / cos(13.66))
    = 41.9 degrees

    (My astronomy software says that the sun at that time is 41.8 degrees west of south, which is nearly identical to the above answer. The difference could be caused by rounding or by tiny discrepancies in the definition of time, since solar days are of slightly variable length.)

    Now we put this all together:

    Step 1: Yesterday's answer showed how to calculate h. Because h=13.66,
    L = H/tan(13.66)
    = 4.11 H

    Step 2: Today's answer shows how to calculate Z. The depth is given by
    D = L cos(Z)
    = L cos(41.9)
    = 0.744 L
    = 0.744 (4.11 H)
    = 3.06 H
  • moisturizing cream
  • Geography latitude and longitude?

    1. The greatest river basin at 2掳 50掳W

    2. The largest sea at 12掳N, 115掳E (2 words)

    3. The greatest land mountain range 29掳 84掳E

    4. Largest peninsula 20掳N 50掳E

    5. Largest delta 22掳N 89掳E



    Ive tried to find it on google maps and google earth, but the answers I'm getting just don't make sense? Thanks in advance for your help.Geography latitude and longitude?
    I've found this to be an easier website for finding what's at a particular lat/long: http://www.mapquest.com/maps



    Click on International and Maps by Latitude and Longitude, then convert W and S to negative numbers.



    1. 2 degrees north or south? Must be south since there's no river basin at 2 north. Amazon.

    2. South China Sea

    3. 29 degrees north or south? Must be north since there's no mountains at 29 south. North is Himalayas.

    4. Arabian Peninsula.

    5. Ganges River Delta. This one wasn't labeled, but it showed where it was. You can either know what it's called based on location, cross reference to another map, or Google "largest delta" or one of the surrounding cities.



    You could also use an atlas and manually find the point at each lat/long, or you could Google the hints, i.e. "largest sea," "largest peninsula".Geography latitude and longitude?
    1 Amazon

    2 Pacific Ocean

    3Himalayas





    Those are the ones I could think of the top of my head. It's strange you couldn't find them on google maps/earth.



    EDIT Oh wait sea, derrrrr... Well, I don't know.Geography latitude and longitude?
    1. Amazon River

    2. South China Sea

    3. Himalayas

    4. Arabian Peninsula

    5. Ganges Delta

    Could this be a shark or whale on Google Earth in S.C.?

    I have Google Earth version 6 and I was looking around and found something in the water off the shores of Debordieu and Pawley's Island in South Carolina. It looks like a huge fish and I used the ruler and it measures about 78 feet. What is it?

    here are the longitude and latitude...



    32掳 22'43.53"N 79掳 08'44.05"N 0 feet elevation on Google Earth 6Could this be a shark or whale on Google Earth in S.C.?
    78 feet? That's way too long to be a regular animal, I agree with the Loch Ness Monster personCould this be a shark or whale on Google Earth in S.C.?
    It's probably the Loch Ness Monster

    Stupid Idiot Google Maps?

    As many of you will know, Google Earth has been discarded in favour of Google Maps/Google Street View. I've no problem with discarding old technology when it's replaced with something better, in this case though, Google Maps is inferior



    They no longer give you Latitude and Longitude positioning and you can no longer measure a distance. You can still 'mark a place', but it's less than obvious how to do it



    There's a message telling me 'You have no starred places'. Well, that's because there's no obvious way to 'star' a place



    Is there anyone out there whose studied computers at university for about 10 years who knows how to do this?Stupid Idiot Google Maps?
    Google Earth has not been discarded. For Latitude and Longitude in Maps right click and select the What's Here? option.Stupid Idiot Google Maps?
    They still offer a download of Google Earth 6, so why is it "discarded"?

    Power on but won't boot up~ Dell Latitude D620 Please help!?

    I recently installed Google sketch and Windows Movie Maker 11 on my Latitude D620 that's running Windows 7. I made a slide show for the family yesterday and paused the movie maker slideshow (on battery - not plugged in) and I tried to turn the laptop back on a couple hours later and the power turned on but wouldn't boot. After waiting a while and trying to turn it on again (with the power cord plugged in) it booted and we finished watching the slide show I made.



    Then today I turned on the laptop and the same thing has happened- POWER TURNS ON BUT WON'T BOOT. The cd rom (?) drive will engage and if I push the eject button it will open. I'm so scared that something is seriously wrong. My warranty was up last june and since I'm the second owner I don't have any of the original disks and I really really don't want to lose my data. Please help if there's any way....



    I'm not a computer genius but I'll try any suggestions- thank you



    *ps it's linked to the internet through a wireless router if that mattersPower on but won't boot up~ Dell Latitude D620 Please help!?
    You can follow this method. First, to determine whats the problem, if you have any working monitor, plug the monitor cable to your laptop vga socket. Make sure you the monitor is working, and have power to turn on. If you can see a display, the laptop screen might be the problem (but the problem also can be from the laptop cable it self.



    If it is blank screen, try goto BIOS (press F2 if im not mistaken) and leave your laptop on BIOS section at least 10minutes. If nothing happen, your laptop is working fine, but the Windows it self is the problem. The boot file might get corrupted or missing. Just insert your CD/DVD of Windows 7 and repair. If you don't have them, download Recovery Disc. Goto to link below.



    http://neosmart.net/blog/2009/windows-7-鈥?/a>



    If the 1st method does not work, remove the RAM one bye one. If you only have 1 RAM in 1 slot, change it to another RAM or insert it to another slot. This is the worst thing, the motherboard is DEAD. Why it worst? This is because laptop motherboard is really expensive. AND they are many thing causing this problem like failure video card, inverter, lcd lamp, etc.



    If your Windows cannot be repaired and need to reformat, use linux live cd to recover your data. It will boot from the cd not from the laptop hdd. It boot from the CD but it can show you any files (hopely including your files/data) in your laptop hdd and other partitions. When you reach the desktop session, find your data and transfer it to pendrive or other storage.Power on but won't boot up~ Dell Latitude D620 Please help!?
    try makeing sure ur battery isnt fried or anything have u been using it alot? incase if u have u might need to pay to get it fixed from the company u bought it from or u can look for more answers and buy a new battery hope this helps

    How do I set up Android to work with Google Apps and a Google Account?

    My phone: Google/HTC Nexus One with Android 2.1.



    I have a domain of my own and use e-mail with that domain. So...I need Google Apps for that rather than a Google Account. However, I also want to use Latitude with Maps and I want contacts and calendar syncing to my phone. If you use the same e-mail address for the log-in with Apps and the Account, it gets confused.



    Does anyone know how to do this? I've tried a few things, but still don't have it working properly.



    Thanks.



    MollHow do I set up Android to work with Google Apps and a Google Account?
    Contact your phone site and ask them,, they would be your best help.. ~How do I set up Android to work with Google Apps and a Google Account?
    They have absolutely nothing to do with it and know nothing about it. This is not related to a mobile provider, but Google.

    Report Abuse

    How do I set up Android to work with Google Apps and a Google Account?
    Here on this website there is a complete guide on how to set up Google Apps on your android phone. www.sefari.net/how-to-set-up-g鈥?

    Report Abuse

  • homemade blackheads
  • How do I get rid of Memory Optimizer?

    Yesterday I clicked a picture on google images and then my laptop froze/crashed(it never hs before). I turned it on today and it says it's installing a "Memory Optimizer" that I never authorized or tried to download and I think it's a virus. Can anyone tell me what I need to do to get rid of it? Also my laptop is a Dell Latitude D620 in case it makes any difference.How do I get rid of Memory Optimizer?
    Try the following:

    1. start the PC in safe mode with networking
    2. save rkill to desktop (its been re-named to iExplore):
    http://download.bleepingcomputer.com/gri鈥?/a>
    3. run rkill
    4. download %26amp; run free malwarebytes:
    http://www.malwarebytes.org/
    5. to make sure your clean now, do a free online scan:
    http://www.eset.com/online-scanner

    tip:

    when clean, read %26amp; use:

    http://www.bleepingcomputer.com/tutorial鈥?/a>

    edit:

    (just came out)

    Remove Memory Optimizer (Uninstall Guide)

    http://www.bleepingcomputer.com/virus-re鈥?/a>

    boy am i good ?How do I get rid of Memory Optimizer?
    if uninstall from control panel does,t work Reboot PC and press the F8 key a couple of times before the Windows screen appears. Enter Safe Mode, or Safe Mode with Networking if you need network access) and download MalwareBytes from google ,Install it, update, and run a full system scan. Remove everything it finds. Next, run a full antivirus scan with something like Microsoft Security Essentials .Auslogics disk defrag and Auslogics registry cleaner are very good and fast to keep you clean and running good .all are free ,just google them.How do I get rid of Memory Optimizer?
    Use Sly_old_Mole's instructions, but if you are blocked from downloading anything, try this code first :

    0973467457475070215340537432225. Memory Optimizer uses single registration code, and thus can be easily disabled. Sure, you will still have to scan with one of these:



    Hitman Pro http://www.surfright.nl/en/hitmanpro

    Spyware Doctor http://www.pctools.com

    MalwareBytes Antimalware http://malwarebytes.org/

    SuperAntiSpyware http://www.superantispyware.com/



    or other decent removers to remove it fully.

    How can I overclock my laptop?

    I have an old laptop, a Dell latitude c610, and since it is rarely used I wanted to experiment with some overclocking since the thing takes a whole minute to load google. Anyway I have overclocked a palm pre plus and a few android smartphones, so I do know that I have the risk of frying the thing or screwing something up. I found a software online called clockgen. Is this software good for overclocking? Are there any other methods?How can I overclock my laptop?
    You don't. Only a VERY select few laptops are able to do any kind of overclocking, and usually what I've seen it's more of an "OC button".

    I love Google Earth. What are some weird things you've seen?

    I've seen airplanes in flight, crop circles, and other strange things. What are some things that you've seen? Car accidents, fires, parades, hot air balloons, parachutes? Do you have the longitude and latitude coordinates? I would love to see what you've found!I love Google Earth. What are some weird things you've seen?
    I saw a strange planet, mostly covered in liquid dihydrogen monoxide and populated by organic, sentient blobs...I love Google Earth. What are some weird things you've seen?
    Ive never seen anything too interesting, I never even thought of it! I wish i could see a car crash or something like that. The best ive ever seen was the nazca animal lines, but i dont have any coordinates.



    You live in America!? cool! I wanna live there, looks a lot better than Ireland!

    What is the huge Trident structure on the North Atlantic floor and what is the apearant open rectangular struc?

    In a line from Gibralter to North America. Closer to North America. Trident is facing North. Approx. Latitude: 35掳36'31.07"N,

    Longatude: 51掳50'49.93"W(Google Earth).Rectangle(looks man made is on the rightside(facing North) stem from center spear to right spear.???What is the huge Trident structure on the North Atlantic floor and what is the apearant open rectangular struc?
    It just looks like a bunch of hills to me. Superficially in the shape of a very rough trident. It's not even that detailed so you can't make out any detailed structure. I don't see anything that looks remotely man-made.



    Why do you think so?

    On Google Earth, what is that black strip between Alaska and Canada?

    %26lt;?xml version="1.0" encoding="UTF-8"?%26gt;

    %26lt;kml xmlns="http://earth.google.com/kml/2.0"%26gt;

    %26lt;Placemark%26gt;

    %26lt;name%26gt;The Black Monolith Returns%26lt;/name%26gt;

    %26lt;description%26gt;Where is it pointing? What is our destiny?%26lt;/description%26gt;

    %26lt;LookAt%26gt;

    %26lt;longitude%26gt;-141.0037184436964%26lt;/longitude鈥?br>
    %26lt;latitude%26gt;62.12299307458733%26lt;/latitude%26gt;

    %26lt;range%26gt;58634.60080882948%26lt;/range%26gt;

    %26lt;tilt%26gt;-6.609480294627591e-011%26lt;/tilt%26gt;

    %26lt;heading%26gt;-29.09855873885896%26lt;/heading%26gt;

    %26lt;/LookAt%26gt;

    %26lt;styleUrl%26gt;root://styles#default+icon=0x3鈥?br>
    %26lt;Point%26gt;

    %26lt;coordinates%26gt;-141.216986365597,62.187230鈥?br>
    %26lt;/Point%26gt;

    %26lt;/Placemark%26gt;

    %26lt;/kml%26gt;On Google Earth, what is that black strip between Alaska and Canada?
    It'll be a frosty day on the black strip between Alaska and Canada before this ninny attempts to decipher those coordinates.



    The black strip is where the river is windin, big nuggets they're findin, north to Alaska ... below that old white mountain just a little south-east of Nome.
    a roadOn Google Earth, what is that black strip between Alaska and Canada?
    You are so strange.Could it be the BOUNDARY line that separates US from Canada?

    "What a maroon",says Bugs Bunny





    "url not found" was my messageOn Google Earth, what is that black strip between Alaska and Canada?
    The link doesn't work=((
  • bloom-
  • Google Earth Help Please?

    Well I have Google Earth and I wanna find secret places using it ( like the indian head? you can search it on youtube ) and on youtube videos, it tells you the latitude and longitude of THAT place. But, it doesnt say the location ( for example...new york )...so how do i find the secret place using only the latitude and longitude information?Google Earth Help Please?
    Enter the latitude and longitude in the search box, separated by a space.

    For example:

    47掳30'25.27" 19掳02'44.50"Google Earth Help Please?
    It tells the lat. and long. in the bottom left corner. If nothing else, you could just look at that and use it to zero in. This could be tedious, but its a good last resort.

    Why has every other row of pixels on my computer died?

    When I turned on my computer a few days ago every other row of pixels had died. My computer model is a Dell Latitude D620. I am pretty sure that it is hardware issue because when I turn the computer on the the pixels are still dead on the start up screen. I have tried restarting the computer with no success. I have also tried to Google it but have not found anything. Please help!Why has every other row of pixels on my computer died?
    Assuming you have a desktop computer (and so the monitor is its own separate component), if you got a spare or extra computer, you could try to hook up the other computer to this monitor. Then you would be able to determine whether it's your computer (maybe its your graphics card and/or driver that's failing) or if it's the monitor.



    If the monitor doesn't work with any computer, then I'd guess it's broken. Nothing lasts forever, so monitors have to break sometimes; however, I admit I've never seen a monitor fail like that.
    LCD display could be going out. Or the connection of the panel to the motherboard could have come loose. If you are handy, you should be able to get to the connector by removing your keyboard, and minimal other components, to make sure it's connected well.

    Being that it is a large number of pixels in multiple rows or columns, that suggest to me that the problem isn't in the panel itself, but rather in the connection to the panel, either where the panel connects to the control wires (usually a large ribbon at the top with many wires, permanently affixed to the panel) or where the control wires connect to the motherboard (mentioned above), or a damaged wire somewhere in between.

    Theoretically, it could be in the panel control hardware itself (the "draw" circuitry), but i'd be more inclined to think that if that went out, you wouldn't get results like you're seeing.Why has every other row of pixels on my computer died?
    It may be your monitor.Why has every other row of pixels on my computer died?
    I'm taking it that you're talking about a desktop monitor. The most simple test would be to unhook your monitor and go to a friend's house that has a desktop computer, and connect your monitor to their computer to see if the results are the same. If the monitor has these same rows of pixels not showing, then you've likely found out that the problem is the monitor and not any hardware or software in the processor. If a friend has an extra monitor that you could connect to your processor, and it works fine, then you can begin the search for a new monitor. This is rather unusual for a monitor to go bad concerning a pixel problem like you describe, but I suppose anything can happen these days. You could always try a System Restore and choose a restore point to a point in time just prior to the computer monitor acting up like this. It could be possible that some Windows or other update is causing the problem. I just had a situation where my sound quit working. I thought it was the audio card gone bad. I tried checking the driver and a couple other things, still no sound. Since I had installed some Windows Updates the day before, I went back prior to that restore point and did a System Restore. Rebooted and I had my sound back. I went back again and reinstalled the Windows Updates from the day before, and I still have sound. The only thing I can figure is that one of the Windows Updates didn't download or install correctly

    ( although there was no indication of this ). Hope one of these things will work for you. Good luck!

    Dell latitude d620 drivers?

    I have a dell latitude d620 that i recently purchased with a built in web cam and i do not know how to access it. I have searched Google for drivers and i have tried everything to access the camera and i am very angry because i can't find anything any good free driver sites ?? HELPDell latitude d620 drivers?
    dell and HP are reallllllly awesome with keeping their drivers on thier website and easy to get to. Just go to the website, go to the bottom of page and click drivers, put in ya model and everything should pop up! i personally dont trust those driver sites, gotta download software to find out crap. its just a bunch of bull.
    hi, did you try dell.com? if yes and no help there, hope these links can work for you instead:

    http://www.drivers-updates.net/drivers/p鈥?/a>

    http://www.drivers-updates.net/company/d鈥?/a>

    you can also check out this dell site:

    http://www.dell-drivers.org/

    or asking on the following forum:

    http://forums.driverguide.com/

    hope my answer helps.

    good luckDell latitude d620 drivers?
    You say "i am very angry because i can't find any good free driver sites" , that's because you need to learn how to use google search

    check this out

    http://www.google.com/search?client=ubun鈥?/a>Dell latitude d620 drivers?
    Go to my computer, It might be there , there are some laptops were they dont have programs its system so look for something named as USB Video Device good luck

    Longitude and latitude for Greenview Restaurant in Petaling Jaya?

    I am trying to find this restaurant in Google Earth. Does anyone know the longitude and latitude?Longitude and latitude for Greenview Restaurant in Petaling Jaya?
    Hmm.. havent had the need to use any GPS to go around town so sorry, i dont know..Longitude and latitude for Greenview Restaurant in Petaling Jaya?
    GPS Coordinates: N 3.118105, E 101.628889

    Report Abuse

    Longitude and latitude for Greenview Restaurant in Petaling Jaya?
    use GPS device and check. If you use google earth, try look for american british tobacco greenview is near there, it is not hard to find.

    Best place to see the fireworks in Chautauqua County New York?

    Our county is hosting a simultaneous fireworks display and I am looking for the best possible vantage point. The display will be from three points on Chautauqua Lake. Mayville, Midway Park and Lakewood New York. I have attempted to use Google Earth for the best and highest point but am a novice at longitude and latitude. Does anyone know the best place or how to go about figuring it out in an easy way without driving all over the county. The display will be this Sunday for Labor Day.Best place to see the fireworks in Chautauqua County New York?
    There is actually 6 locations and Im not sure where the best viewing will be as its so spread out, it may be best to pick one of them. I Am not even sure where I will be at yet, but was thinking between the westfield Mayville area to catch them on this end of the lake.

    All of it will go via live radio feed and if your at a specific location it will be shown on tvs in those locations taken from footage from a airplane flying above.

    Bemus Point- midway

    Mayville/ Chau: Lake side Park

    Barcelona

    Findly Lake

    Jamestown

    Lakewood



    Best place to see the fireworks in Chautauqua County New York?
    You may consider the rest area along interstate 86 Eastbound...just south of Bemus Point [where I live].....either that or Long Point state park.......have fun !
  • pout
  • Where exactly in Turkey is the Sunsail Club Marverde?

    Trying to find out where in Turkey this resort is geographically located. I know it is about 15 minutes from Milas Bodrum Airport (BJV) and is located on the coast, but I have had no luck in finding it on Google Earth or any other mapping application.



    Latitude/Longitude data would be ideal, but any decent description of where this club is located would be most useful.



    Thank you.Where exactly in Turkey is the Sunsail Club Marverde?
    http://www.sunsail.co.uk/clubs/destinati鈥?/a>



    http://www.sunsail.co.uk/clubs/destinati鈥?/a>



    I think It helps. Nice holiday.



    http://maps.google.com/maps?f=q%26amp;hl=en%26amp;ge鈥?/a>

    Map of Budrum to g眉vercinlik.





    http://maps.google.com/?ie=UTF8%26amp;ll=37.15鈥?/a>

    Map of kuyucak

    LIST showing Latitude Longitude of Interesting PLACES on earth ie Stonehenge, Mt Everest, Crop Circles etc (mo

    LIST showing Latitude Longitude of Interesting PLACES on earth ie Stonehenge, Mt Everest, Crop Circles etc (most map searches involve addresses, cities...etc USE FOR EXPLORING ON GOOGLE LIKE EARTH MAPSLIST showing Latitude Longitude of Interesting PLACES on earth ie Stonehenge, Mt Everest, Crop Circles etc (mo
    where?LIST showing Latitude Longitude of Interesting PLACES on earth ie Stonehenge, Mt Everest, Crop Circles etc (mo
    Don't know but check this site out -



    http://s11.photobucket.com/albums/a165/a鈥?/a>

    Google Map API with GPS control for Helicopter?

    I am doing a project. I want to use google maps api to send a (longitude,latitude) command wherever I click to my microcontroller that will navigate the helicopter to that location with the built in gps. Does google maps api has any such function for sending commands?Google Map API with GPS control for Helicopter?
    I'm assuming you know basics of google maps api, here is the js code to get longitude and latitude data from a click on google maps, in the code below replace the alert function with your function which will pass data to microcontroller and pass the variables lat %26amp; lng.



    var map;

    map = new GMap2 (document.getElementById ("map"));

    map.addControl(new GLargeMapControl());

    map.addControl(new GMapTypeControl());

    map.setCenter(new GLatLng(40, -100), 4);



    GEvent.addListener(map, 'click', function(overlay, point) {

    if (overlay) {

    map.removeOverlay(overlay);

    }

    else if (point) {

    var marker = new GMarker(point);

    map.addOverlay(marker);

    lat = point.lat();

    lng = point.lng();

    alert ("Latitude = "+lat+"\nLongitude = "+lng);

    }

    });Google Map API with GPS control for Helicopter?
    The system you describe is already in service. In fact, GPS navigation has been around for quite some time, but it does not use Google to find it's way. I suppose if you were just building a PC game, it would work fine, but in the real world the sky is broken up into sections of different airspace classes and requires separate procedures for flying through each. In addition, there are altitude limitations and restrictions. For this reason, most GPS receivers use a virtual sectional map of the airspace region the pilot intends to fly through. Since Google maps lacks the complex array of navigation aids and airspace structure definitions, it may not be the best choice for navigating aircraft and this is why it's not part of the mainstream aviation industry. I suspect that Google maps, and Google Earth is for entertainment reasons only.

    Is there any program out there that can control the fan speed on my dell inspiron 1525?

    I have been looking around (on Google) for a while now but could not find anything other than a program called I8KGUI fan which worked on my dads ancient dell latitude d505, but unfortunately my brand new dell inspiron 1525 is not supported by this program. Any help would be greatly appreciated, thanks in advance.Is there any program out there that can control the fan speed on my dell inspiron 1525?
    For Intel there is Speedfan29 and for AMD there is Speedfan28.

    Which waste more battery on my android cell phone... leaving wifi on or leaving gps on?

    So my husband and i use google latitude and when im home and my wifi and gps is off latitude says im like 15 blocks from where i really am.... When i turn on gps is almost exact same when i turn on wifi... so i was gonna just leave one of them on always but i dont wanna waste my battery. So which is better and draws less battery to leave on always gps or wifi?



    ThanksWhich waste more battery on my android cell phone... leaving wifi on or leaving gps on?
    If your driving and keeping getting then disconecting from wifi a lot then the wifi other than that gps
  • mascara
  • How did I violate community guidelines by trying to help?

    Eric C asked the question "whats is London longitude and latitude?" and I told him "I don't know right now but go to google earth and find out!" and I was violated and want to know why, and if you think I did wrong by informing him where he can find the information he was looking for? I think it's BULL myself! What do you think?How did I violate community guidelines by trying to help?
    It was probably someone who wanted others to do their homework and you suggested that he go to the trouble of looking it up himself. He likely reported you. On the other hand, he may have just clicked on the report button accidently. Either way, I wouldn't lose any sleep over it.
    Hi Eric,

    I think maybe you were violating guidelines because this 'Answers' service is a part of the Yahoo online presence but you referred to Google earth? Perhaps the word "Google" was a violation? The mention of a non Yahoo product? Esp when it is another major search engine in use besides Yahoo? In this case, Google?

    Well I won't say I don't know..... but I will not say I am totally 100% sure.

    This is just my logical guess.

    Sometimes in the business world, there are competitors.

    And the search engines online are also in the game of profitability and hence, e-business?

    Maybe you can write in to Yahoo to ask the reason why you were violating guidelines. Normally Yahoo is quite prompt in replying to customers' questions. Try that. You may feel better.

    Don't let it affect you too much ok. I don't think it is anything you should take too personally.

    Another good reason why you were violating, as mentioned in the earlier response, you could be relpying with an "I don't know" and not giving any real concrete answers to the question. I guess if this is so, then i suppose there probably had to be measures in place to prevent abuse of the system of getting 2 points for replying to a question.How did I violate community guidelines by trying to help?
    Sounds more like a chatting thing then giving an answer. You can look it up and give the Source. You could NOT ANSWER. There are far better options then say oh look it up yourself. Saying you don't know the answer is a violation, because you aren't giving a real answer.How did I violate community guidelines by trying to help?
    Posting "I do not know" answers is called gaming and cheating Posting anything for the two points. Answers must be knowledgeable and directed toward the question. Read the guidelines and you would know the answer
    Where was this? Whose community guidelines are you talking about?
    If he had asked how to find the information, that would have been a splendid answer.

    Would you forgive a guy like that?

    I have a boyfriend we been together for 6 months , yesterday i just found out he been to a massage place (whore house) AND HE HAD SEX with the girl that gave him the (massage) i found him on google latitude.He said it was true and he was very very sorry about it , and he asked for forgiveness i love him a lot but i dont know if i forgive him or not i will never trust him again i guess. please give me you opnion . what would you do ? thank you .Would you forgive a guy like that?
    Nope. I would not recommend it. Trust is key to a relationship, and it sounds like this one will have none. He can't trust you because you creeped on him (which is in some cases acceptable, like when you're worried he may be doing things that can lead you to contracting AIDS, but still) and you said so yourself that you can't trust him.

    And even if he is sorry, that's just unacceptable for him to be even thinking of doing that. Like, what, are you not enough?! He doesn't deserve you.

    And he could have an STD now, so if you were ever planning on reaching that step or having children, you would have to worry about that, since he could simply be a carrier and never know. And STDs can KILL you.

    And he could've gotten that woman pregnant. You may never know, until one day the kid shows up to reunite with their dad.

    And what if he does it again? Do you want to have to worry about monitoring him constantly in case he thinks of doing it?

    6 months is a serious relationship that he just threw away. But it's also short enough for you to still move on past it and find someone better. I think you should. I'm sorry this happened to you. It's absolutely awful.Would you forgive a guy like that?
    You shouldn't have creeped on him, but if feel betrayed you will never get over it and might get jealous of him and chicks. It isn't worth it. I would forgive and forget. But that's just meWould you forgive a guy like that?
    if you cant forgive and completly forget den theres no point staying with him. every time he goes out u will be worrying and just upset your self also you will question him and he will get angry and annoyed after time with the you keep quizzing him and checkin up on him. you only been wid him 6 months i know its hard but think its easier to leave him now den in2 years time after you gone through so much hurt and dis-trust x

    How does geocoding work?

    On google maps etc. if you enter a postcode, it looks up the latitude/longitude coordinates for that postcode - how does it do this?How does geocoding work?
    Hello

    On this page you'll get

    the requested information.



    http://www.trpc.org/programs/gis/geocode鈥?/a>

    On Google maps, can you find. . . ?

    A location by typing in the longitude and the latitude of the place?



    - I know the longitude and latitude of a certain place, but I don't know how to find it on google maps.On Google maps, can you find. . . ?
    try this website. http://multimedia.journalism.berkeley.ed鈥?/a>On Google maps, can you find. . . ?
    Most good maps have numbers in the margins, these numbers represent degrees,now latitude runs from west to east and longitude runs north to south..now fro example ifyou were looking for New Orleans, L A you would follow the 90 degree line to the latitude line to 30 degrees .the lines will intersect on New Orleans. I hope this was helpful?On Google maps, can you find. . . ?
    If you can't use Google Maps to find the place, try using Google Earth.



    But to find it on Google Maps, try simply copying and pasting the long/latitude into the Maps' search bar :)

    Google Earth- what are these pock marks?

    While looking in Afganistan near Kabul on Google Earth, I found these weird pockmarks leading a trail miles long and was wondering if anyone knew what they were. I also found similar pock mark trails in Iran. Any help??





    heres the coordinates.



    latitude 34掳41'57.07"N

    longitude 69掳14'27.46"EGoogle Earth- what are these pock marks?
    Those are irrigation sites - wells set in circular dikes, where water can be pumped up and stored so it can be spread out to the fields. If you follow them up to the north (they go for MILES!!), you will see some of them with water in them. Please note that the pics were taken in October of '04, so the growing season is over. If the pics were taken in the summer, all of the "pock marks" would be full of water.
    I was going to say bomb craters but they are too well spaced apart. As well as there are LOTS of them around that area, to the south and east as well.



    I am honestly stumped and don't know. If someone else can find the answer please post. I am curious now too.Google Earth- what are these pock marks?
    I dont know, the only reason I am answering is to find this question again.Google Earth- what are these pock marks?
    It looks like the surrounding area was flooded at one point and when it dries it left that think dried clay/mud chunks. As for the pock marks maybe they are drilled into the ground to help capture the water for farming......
    I was able to trace a line of them from a road at

    34.665545掳

    69.278075掳

    for about 7 miles north towards the Bagram airport.

    ----------------

    I can't think of any agricultural use for holes spaced 30 to 40 yards apart. Must conclude that it is a line of foxholes.
  • aveeno cream
  • Tuesday, February 7, 2012

    How to use google map API?

    Requirments

    input - get latitude and longitude

    output - locationHow to use google map API?
    dude where's my car.

    http://code.google.com/apis/maps/documen鈥?/a>

    Latitude and longitude reference coordinates.?

    When you use lat. and long. options on your GPS, it is usually with reference to WGS84. Working in North Africa we used to be given coordinates for oil wells etc. in Clarke1880 format; as the difference could be as much as 2km, we had to get them to redo it in WGS84.

    What causes the difference, and why is there one at all? If I worked out my latitude and longitude with a sextant and chrononometer, what system would I be using? What system do Ordnance Survey maps use, and what about Google Earth?Latitude and longitude reference coordinates.?
    The whole thing gets a bit complicated, but here is an outline of the problem.



    The earth can be regarded as a sphere and it is possible to base a system of navigation on this. There is a problem, the earth is not a sphere but is flattened at the poles because the rotation of the earth results in bulging at the equator. So a more accurate method is to regard the surface as an elipsoid. There are parameters which describe the flattening at the poles and are used to generate the elipsoid. It is also possible to generate a geoid. This can be done by assuming an extension of mean sea level over an area covered by land.



    There is also the problem of a datum. That is basically a known point from which we measure the relative possitions of all other points.



    Now for a bit of history related to the USA but applicable to other countries with modifications for any locally derived datum.



    A standard, the North American Datum 1927 (NAD27), used the Clarke ellipsoid derived by Clarke in 1886 and a base line starting at Meades Ranch in Kansas. The origin point is located on the surface of the earth.



    When satellite data became available, it became apparent that the ellipsoid was incorrect and for this and other reasons some 2,000, 000 reference points spread across North America were also inaccurate.



    A new standard, the North American Datum 1983 (NAD83), is referenced to the WGS84 ellipsoid. Coordinates are related to the centre of mass of the earth, not to a surface location. This has resulted in a more accurate system but has "moved" the 2,000,000 reference points by as much as 300mtrs.



    So the difference is because of a better deffinition of the elipsoid and a better reference point.



    Your reference to Africa indicates that they had previously been using the Clarke ellipsoid and that the oil companies were using the WGS84 ellipsoid.



    Satellite navigation systems generally use the 1G geoid as a reference. This is an imaginary surface on which the acceleration due to the earth's gravity is 1G. This is usefull becasue it takes in to account local variation and is, of course, the surface that is followed by the satellites orbit. GPS systems then translate the gathered information to WGS84 coordinates. If you look at all the information that is available from the GPS, one of the things will be your altitude above the 1G geoid.



    Using star shots, the simplest thing to do is to determine lattitude from observation of the pole star (when in the northern hemisphere). Longitude is determined from sun observations and an accurate clock. These observations are obviously modified with changes in altitude and need some correction.



    Ordnance survey maps use a UTM projection. This provides for accurate projection of the earth's surface onto a flat sheet of paper. The accuracy is limited to a small area which is why the world is split up into UTM zones. An artificial grid is used which is not alligned to lat/lon. You will see on the paper maps that they show a direction for grid north, true north and magnetic north. The map will also state which ellipsoid and which datum was used to produce the map. Errors exist, as with all maps, and increase towards the edge of the map. This is why you cannot just take two paper maps and glue them together and expect everthing to match up.



    I do not know what Google earth does but I would think that they reference it to WGS84.



    I hope this helps.
    Units of Measurements are always dependent upon country or an organisation. Just like In UK, we use term Miles while in India, we use trm Kilometre for measuring city distances. To resolve your issue, why not refer to SI units of measurements (uniformed standard of units maintained by France)?Latitude and longitude reference coordinates.?
    OS AND GPS NOW USE THE SATELLITE NAVIGATION FIXED POINT WHICH SHOULD ELIMINATE THE MARGIN OF ERROR A SEXTANT WOULD GIVE.Latitude and longitude reference coordinates.?
    The answer is more complex than that, but basically, most of the difference comes from the fact that WGS84 and Clarke1880 describe earth as slightly different ellipsoids.

    Does anyone know of a fast way to do a distance calculator?

    I need to put a distance calculator in a website to calculate the distance of any two cities. I already know a little PHP. I tried to do the latitude and longitude thing with the sin and cos, and link it to the Google Maps database in order to pull the zips but it's just returning the miles for one trip and I can't input any other zips. I really need help!Does anyone know of a fast way to do a distance calculator?
    Try to use Google Maps API there you have lot of functions. You don't need to give zips directly you can get distance on two cities.

    Triassic Time Period Longitude and Latitude?!?

    I have a project I'm doing on the Triassic time period and I need to know the longitude and latitude of North Carolina! I have no idea how to read longitude and latitude on a map. I know if you Google "triassic time period maps" you get a bunch of maps of all the continents and junk but I'm not sure how to get what I need from them. My teacher is just saying to figure it out... Can anyone Help me PLEASE??Triassic Time Period Longitude and Latitude?!?
    approximately from 0*%26lt;-----%26gt;19*W %26amp; 11*N %26lt;-----%26gt; 17*N

    for more see http://images.google.co.in/images?hl=en%26amp;q=north%20carolina%26amp;rlz=1R2ADBF_en%26amp;um=1%26amp;ie=UTF-8%26amp;sa=N%26amp;tab=wiTriassic Time Period Longitude and Latitude?!?
    First, you need to be able to read modern maps for longitude and latitude. We can't help you much with that, you need a live human right by your side, pointing at a map.

    Dell latitude d520 slows down and freezes during boot up?

    when ever i click on a profile. sometimes i wont even boot up or it will get to the desktop screen but when i try to do anything like go to google chrome or open up a folder then it freezes...even when i try to do a virus scan. it wont even open up task manager when i does this. it just seems to go really slow even though it is a windows xp with 2 gigs of ramDell latitude d520 slows down and freezes during boot up?
    Must be a virus...u should scan ur computer. If it fails, then backup any important data and format your Hard Drive. Then reinstall windows and all other software and insert back those files. Windows should be a lot faster. Please buy the latest antivirus as soon as you can.Do this step and scan ur computer immediately.Dell latitude d520 slows down and freezes during boot up?
    Registry issues, sounds like a lot of old junk files in the registry and temp files , download and install ccleaner http://www.piriform.com , run disk cleanupde-fragg,under control panel %26gt;internet options click delete to delete browsing history and any leftover temp files and infected cookies
  • halloween makeup
  • Can someone plz tell me some cool places on google earth?

    PLease leave the location in latitude and longitude formatCan someone plz tell me some cool places on google earth?
    I'm sure you're a smart one.

    Try Machu Pichu!

    d;o)

    Avatarxz
    area 51Can someone plz tell me some cool places on google earth?
    I don't have it in latitude and longitude, but if you look up Eiffel Tower... that looks pretty coo...Can someone plz tell me some cool places on google earth?
    Check this:

    http://www.youtube.com/watch?v=Nhd2qYiuUf8

    http://www.youtube.com/watch?v=XOPMjqlSKFM
    portsmouth docks

    Are there any good canadian football stadiums in Monteregie, QC?

    It would be great if you could put directions or longitude or latitude so I can view them via google maps.



    If you know the stadium capacity that would be great too--- but I recognize few people are as geeky about stuff like that as I am.



    Thank you!Are there any good canadian football stadiums in Monteregie, QC?
    No. Plenty of football fields, but no stadiums. For that you have to go to Montr茅al.Are there any good canadian football stadiums in Monteregie, QC?
    look for yourself

    Latitude and longitude maps?

    i have S.S. homework and i don't have my textbook with me that has the longitude and latitude lines

    and i have to write the reletive location of the numbers shown example:42(degrees)N %26amp; 88(degrees)W but since i dont have the map i cant find the reletive location so if you can find a map with longitude and latitude lines AND the city its in plz tell me where to find the map ( also on google earth IS it possible to show the latitude and longitude lines?)Latitude and longitude maps?
    You can do this from Google Maps in these formats:



    42掳 00' 0.000" N, 88掳 00' 0.000" W (degrees, minutes, seconds)

    42.00000 N, 88.00000 W (minutes and seconds converted into fractions of a degree)

    +42, -88 (+ is N of the equator, - is S of the equator; + is E of the prime meridian, - is W of the prime meridian)



    Your co-ordinates land exactly on 70 Brantwood Avenue, Elk Grove Village, Illinois. As a relative location you might say that it is near Chicago's O'Hare International Airport.



    http://maps.google.ca/maps?hl=en%26amp;tab=wl

    Longitude and Latitude?

    Define longitude and latitude.. i look it up on google and there are 2 opposite definitions.?Longitude and Latitude?
    Longitude



    http://dictionary.reference.com/browse/l…



    Latitude



    http://dictionary.reference.com/browse/l…
    Latitude and Longitude



    Latitude measures distance north or south of the Equator (the band of 0 degrees latitude that runs east and west around the Earth). Each latitude line forms an imaginary circle around the Earth. Because these circles are parallel to the Equator, they are sometimes called “parallels.” The farther the circles are from the Equator, the smaller they are, until they become points at the North and South Poles. The latitude of the North Pole is 90 degrees north, and that of the South Pole is 90 degrees south. A location’s latitude is measured in degrees. If you could draw one line from the location to the center of the Earth and a second line from the Equator to the center of the Earth, the angle between those lines would equal the latitude of the location.



    Longitude measures distance east or west of an imaginary band running from the North Pole through Greenwich, England to the South Pole. This imaginary band defines 0 degrees longitude and is called the Prime Meridian. Other longitude lines are sometimes referred to as “meridians.” All longitude lines meet at the North and South Poles.



    Maps are often marked with both parallels and meridians—latitude and longitude lines. The latitude and longitude of a location are its geographic coordinates. Kids Network refers to these coordinates of a place as its “global address.” If you know the coordinates, or global address, you can use a world map to locate any point on Earth.Longitude and Latitude?
    Definition of geographic latitude- It is the angle between the plane of the equator and the vertical at that place.

    Longitude- it is the arc of the equator or the angle at the poles contained between the prime meridian and the meridian through that place.

    (meridian= longitude)Longitude and Latitude?
    Longitude goes up and down (vertically). Latitude goes sideways (horizontally).
    longitude are the vertical lines and latitude are the horizontal ones.

    Imoporting to Google earth?

    Hi everybody;

    I would appreciate if anybody can help me in exporting an excel sheet that has name,longitude,latitude and property description into Google earth.

    Please i need this very much...:)Imoporting to Google earth?
    The following page supplies software that enable you do do this - http://www.zonums.com/excel2GoogleEarth.鈥?/a>



    If you want a detailed explanation - this page walks you through the steps to do this - http://freegeographytools.com/2007/impor鈥?/a>Imoporting to Google earth?
    Thankfull very much , but i would appreciate if you have a macro Code for the above.



    Thanks

    Report Abuse

  • prescription cream
  • Latitude an longitude i need help fast!!!?

    I need help finding Latitude and longitude

    is there a website where i can type in like 118 w and 33n and then have it tell me its location??

    ive tried mapquest google earth and google maps

    i cannot figure it out

    please help





    problems:

    118w, 33n

    81w,25n

    78w,35n

    85w,47n

    115w,43nLatitude an longitude i need help fast!!!?
    1. Pacific Ocean (50 miles northwest of San Diego)

    2. Gulf of Mexico

    3. Kenansville, NC

    4. Whitefish Bay, Ontario, Canada

    5. Gooding, Idaho
    Hey! Go here; http://www.mashupsoft.com/maps/latlonlocator



    All you do is type in the latitude and longitude and it will point it out for you! Hope I helped!Latitude an longitude i need help fast!!!?
    It worked for me when I did it...try google maps. just type in "118w,33n" and it will show you that it is off the coast of California.Latitude an longitude i need help fast!!!?
    alot of books have maps in them...

    history books..

    some dictionarys and thesauruses...

    you could try those

    Ow can I determine what city is exactly opposite of my city geographically?

    I am in San Diego. Not familiar with using longitude and latitude, etc., but I tried Google Earth to no avail. How can I find the location on Earth EXACTLY opposite from me?Ow can I determine what city is exactly opposite of my city geographically?
    The coordinates of San Diego are about Latitude 32掳 42鈥?54鈥?N and Longitude 117掳 9鈥?45鈥?W. The antipodes point of this is Latitude 32掳 42鈥?54鈥?S and Longitude 62掳 51鈥?15鈥?E, which is a point of empty water in the Indian Ocean about 2,000 kilometres southeast of Madagascar.Ow can I determine what city is exactly opposite of my city geographically?
    Wow. That first answerer seems to know his stuff. It's funny that you asked this question today, because my 5 year old asked me the exact same thing this morning. Well, in 5 year old dialect. Another starry starry question for you! :)Ow can I determine what city is exactly opposite of my city geographically?
    Try this:



    http://www.freemaptools.com/tunnel-to-ot鈥?/a>

    Trying to get sound on my Dell Latitude D510 laptop?

    I've recently had to re-install windows on my laptop, its a Dell latitude D510. The last time I did that I had to download and install the sound/volume. I don't think it was a driver though. I typed in on Google, something like 'Dell Latitude D510 sound' And I found a free downloader instantly, but now I've just re-installed windows again due to a major virus problem and now I can't find the sound download like last time. Anyone know where I can find it or what I can type in to look for it?Trying to get sound on my Dell Latitude D510 laptop?
    Dell website:

    How to get into bios setup on a old dell latitude ppl?

    f2 doesnt work or f8 or delete or any of the keys. Does anyone know what the correct key is for sure? (google search did not work to well)How to get into bios setup on a old dell latitude ppl?
    Dell庐 400 F3

    Dell 400 F1

    Dell Dimension庐 F2 or DEL

    Dell Inspiron庐 F2

    Dell Latitude Fn+F1 (while booted)

    Dell Latitude F2 (on boot)

    Dell Optiplex DEL

    Dell Optiplex F2

    Dell Precision鈩?F2



    Warning: The instructions listed may vary depending on the make and model of your computer. Numonics does not assume responsibility for any problems that may occur by using this information. We recommend you use the documentation provided with your computer to access the computer setup and change serial port settings. If you have questions, please contact your computer manufacturer.

    http://www.numonics.com/support/bios.htm



    If it doesn't work try asking at Dell Community

    http://www.dellcommunity.com/How to get into bios setup on a old dell latitude ppl?
    Thank You.

    Report Abuse

    A bit of fun question, Google earth?

    People with google earth.

    Could you tell me the longitude, latitude, etc of



    A) your favourite Restaurant

    B) your favourite holiday destination

    C) your first kissA bit of fun question, Google earth?
    0掳 00掳掳 00掳掳掳

    live in an igloo at the north pole don't get out much.
    are you madA bit of fun question, Google earth?
    yesA bit of fun question, Google earth?
    Yes, but should I also give you my bank account and social security number as well?
    A) http://maps.google.com/maps?f=q%26amp;source=s鈥?/a>



    B) Hmm...



    C) http://maps.google.com/maps?f=q%26amp;source=s鈥?/a>
    i could but would have to kill .........
    Fav restaurant: McDonalds, city center, dublin.! (classy eh?)

    Holiday: New York.

    Location of first kiss: In Angelina Jolie's house.
    A) Can't remember its name, but it's the Chinese restaurant on Great Denmark Street in Dublin. Doesn't look like much, very basic in fact, but the food is absolutely superb. 53 21 17.64N, 6 15 45.77W



    B) Scotland



    C) Can't remember
    A,Du Progress Gent Belgium B, Belgium C, from you when I gave you your Scoobie snacks !!!
    Haven't download it yet but I have typed in peoples addresses for fun, my house, my brothers, my neighbours they think its hilarious, a friend in jacksonville florida showed me his place its really cool lol, but I can tell you that the pizza hut would be my favourite restaurant, holiday destination is an hours drive away to burleigh heads beach and first kiss was in my bedroom when nobody was home lol, and since you know where I live you pretty much know where things are situated lol! :)
  • red lipstick
  • Are there any canadian football stadiums in Monteregie, QC that you would consider good?

    I have been looking via google without much luck.



    If you know one, it would be great if you could put directions or longitude or latitude so I can view them via google maps.



    If you know the stadium capacity that would be great too--- but I recognize few people are as geeky about stuff like that as I am.



    Thank you!Are there any canadian football stadiums in Monteregie, QC that you would consider good?
    Molson stadium (where the Alouettes and McGill University play) is in downtown Montreal. Not real close to Monteregie but in the same general vicinity.

    How to track my lost blackberry phone?

    no i do not have google latitude



    but if my friend does can they track me?



    anyways to track a blackberry device? they all have built in gpsHow to track my lost blackberry phone?
    I once lost my BlackBerry by accident, and but I had its Bluetooth turned on. My laptop was already paired with it, so I walked all over the place until my laptop detected my BlackBerry. Found!



    (Same trick can be done with a Bluetooth headset that you had already previous paired with your BlackBerry. It will automatically connect to the BlackBerry when it finds the lost BlackBerry).



    It's not GPS, so I had to walk around until by chance I was near it again and detected its Bluetooth signal!

    Is there a way to directly divert data from the serial port to an application.?

    I want to display google map with the position(latitude and longitude) obtained from the UART. The data obtained should directly go to the application and display the map correctly. Is there any script that i should write for this or is there any tool alreadyIs there a way to directly divert data from the serial port to an application.?
    Are you looking for a script to convert serial data from UNKNOWN format (as received from serial port) into a format recognisable by google maps?



    Do you realise that there are MANY various formats/encodings/encryptions/compressio鈥?that the data can arrive in (on your serial port)?



    On the other hand if you KNOW how to get the info that you need (latitude and longitude) from your serial port than all you will need to do is to pass these values to google maps as part of URL request...

    What are some good places to see on Google Earth?

    Funny - weird - whacky things ... or places that are really different..



    Latitude and Longitude coordinates appreciated.What are some good places to see on Google Earth?
    Sydney Opera House, Australia: 33 51' 23.66" S, 151 12' 54.38" E

    Statue: "Mother, Motherland Calls", Russia: 48°44′32.5″N, 44°32′13″E

    Angkor Wat, Cambodia: 13° 24′ 45″ N, 103° 52′ 0″ E

    Grand Canyon, USA: 36° 6′ 0″ N, 112° 6′ 0″ W

    Venice, Italy: 45° 26′ 0″ N, 12° 19′ 0″ E

    Temple of Karnak, Egypt 25° 43′ 7.46″ N, 32° 39′ 26.64″ E

    Uluru (Ayres Rock), Australia 25°20′42″S 131°02′10″E

    Timbuktu, Mali 16° 46′ 33.24″ N, 3° 0′ 33.84″ W

    Heard %26amp; Mcdonald Islands (Aust) 53° 0′ 0″ S, 73° 30′ 0″ E

    Balls Pyramid (Lord Howe Is, Aust) 31° 45′ 21″ S, 159° 15′ 2″ E

    Albert Park, Melbourne (Formula 1) 37° 50′ 59″ S, 144° 58′ 6″ E

    Mauna Loa, Hawaii 19° 28′ 45.84″ N, 155° 36′ 9″ W

    Legoland, Denmark 55° 44′ 8″ N, 9° 7′ 34″ E

    Iguazu Falls, Brazil/Argentina 25° 41′ 43″ S, 54° 26′ 12″ W

    Mt Rushmore, South Dakota 43° 52′ 44.21″ N, 103° 27′ 35.37″ W

    London Eye, England 51° 30′ 11.88″ N, 0° 7′ 10.92″ W

    Aircraft Graveyard, Arizona 32° 10′ 15.2″ N, 110° 51′ 18.66″ W

    Mt Everest, Nepal/China 27°59′17″N 86°55′31″E

    Cheyenne Mountain (NORAD), Colorado +38° 44' 39.85", -104° 50' 42.06"

    Millau Viaduct (under const), France 44° 4′ 46.6″ N, 3° 1′ 20.39″ E

    Royal Gorge Bridge, Colorado 38° 27′ 42.01″ N, 105° 19′ 30″ W

    Moulin Rouge, Paris (extreme zoom) 48° 53′ 3″ N, 2° 19′ 56″ E

    Bell Rock Lighthouse, United Kingdom 56° 26′ 3.12″ N, 2° 23′ 14.28″ W

    Machu Picchu (lost city of the Incas), Peru 13° 9′ 47″ S, 72° 32′ 44″ W
    Hello



    1.TAJ MAHAL in Agra-India

    2.Oprah House in Australia

    3.Freedom Stature-New Yark-USA

    4.Great wall of China

    5.Honolulu islands

    6.Reunion Island

    7.Mauritius Island

    8.Adman %26amp; Lashwadeep Islands

    9.Austrial %26amp; New Zealand Coral Reef sea.

    10.ARTIC %26amp; ANTARTICA



    List is very lengthyWhat are some good places to see on Google Earth?
    Hard to beat one of the answers as I don't have G E. at the moment. But -



    Marree Man in Sth Australia

    Forbidden City, Beijing

    Area 51, USA (Groom Lake)

    The Kremlin, Moscow

    Your house

    Your previous houses

    The Pyramids of Egypt

    Plains of Nazca

    Coal mines in central Queensland

    Gt. Barrier Reef

    Hawaiian islands

    Gladstone, Q. You can see the ripples in the roofing iron of the aluminium smelter and ships loading in the port.

    Street maps of any town in Australia, the USA etc.

    Volcanoes

    Timbuktoo



    You can also Google Mars with good pictures of Valles Marineris, Chryse Planitia, Mons Pavonis, Olympus etc. You can see the remains of islands in Chryse P. where water from V. Marineris must have once flowed out.



    Also Google Moon.What are some good places to see on Google Earth?
    jodhpur
    Check this out:



    http://googlesightseeing.com/



    Enjoy!
    sea is the best place.
    your old friends house or ur crush in town .whats on there backyard

    I need a map that has longitude and latitude which is also "movable"?

    Sort of like http://google.com/maps except with longitude and latitude on it.



    Thanks!I need a map that has longitude and latitude which is also "movable"?
    http://atlas.mapquest.com/maps/latlong.adp try that i actually used it earlier todayI need a map that has longitude and latitude which is also "movable"?
    I use http://itouchmap.com/latlong.html



    Just put in a point and it shows you what long/lat it is.

  • free makeup
  • How do I find my phone?

    I was aperently rely drunk last night and dont know anyhting I did and my Phone is missing my Phone had google maps google gps and google latitude and there has to be some way to use those to finde it! who call to trace it our how to I trace it myself

    ?How do I find my phone?
    When i lose my phone i normally remember if i was home when i lost it or not. if you where home when you got drunk just call it using another phone that always works for me. :)How do I find my phone?
    check the toilet washer basement/attic or backyard or dryer

    What are the best free App's available for the Blackberry Bold?

    Im looking to d/load some cool apps for my bold...i have the usual...Shazam and Google Maps with Latitude....any others u can reccomend?What are the best free App's available for the Blackberry Bold?
    Pandora, Viigo (if you follow any RSS feeds) and Qik.

    Position of your house on google earth?

    Do you know the longitude and latitude of you?Position of your house on google earth?
    No but I'm sure my husband does. He loves that program!
    no, i don'tPosition of your house on google earth?
    Yes, but I'm not telling you.Position of your house on google earth?
    40o 42'57 N 83o 06'06 W

    Issues with Google Chrome?

    I'm running on Win XP on a dell Latitude D610 using google chrome and almost every time that I go to a web page, chrome just stops trying to load the page. I have to click into the address bar and hit enter or refresh the page up to ten times before it finally loads. Sometimes, especially when using blogger or Hotmail, the status bar at the bottom says "javascript [void]" or a message similar to that and everything i click because null and void. It's really beginning to frustrate me. My internet connection is superb. it's not just the laptop because it does it on my home computer as well. I really love the theme of chrome and would like to fix this problem if possible..

    on another note, does anyone know why i have to reload a page multiple times to view photos on facebook?Issues with Google Chrome?
    Hi,



    it seems the browser configuration files are corrupted, try to reinstall the google chrome..

    if you can send a screenshot of the error message i can help you further.

    Is there a website where i can find a cheap Dell Latitude D610 for under 200 dollars???

    I have tried ebay and amazon, plus yahoo and google but there was none in my price range!!! PLEASE HELP!!!!Is there a website where i can find a cheap Dell Latitude D610 for under 200 dollars???
    ebay, i got one for around 300 and worked great.

    Or geeks.com, they always have the cheapest stuff outthere. I bought an Fm transmitter for my ipod and a wireless optical mouse. Both work great...Total cost=17 bucks...cant beat that
    I got one for 303 from usa.notbooks.com. That is the cheapest you are going to find.

    Report Abuse

    Is there a website where i can find a cheap Dell Latitude D610 for under 200 dollars???
    Insaine people.... you can't get it for 200 dollars. FFS DUDE, how stupid can you be ? Looking for a laptop when you only got 200 dollars : S It's impossible.Is there a website where i can find a cheap Dell Latitude D610 for under 200 dollars???
    I'm gonna have to agree with the other guy... Sorry, but there just isn't any way you'll get any decent, or even below decent laptop for under $200. Your best bet is to get a job as a techie-- you get free stuff. I haven't even taken a computer course in my life, but I just taught myself a lot of stuff and now i'm a techie for a cardiac diagnostics place. I get free flatscreens and I just got a free laptop.
    No if you do see one at that price you are going to get ripped off as it will be a scam. To good to be true Prices says it all



    Then you may get on on ebay second hand



    http://search.ebay.com/search/search.dll鈥?/a>
    exclusive laptop informations

    http://www.laptopspecial.blogspot.com...
  • makeup tricks
  • I am using google earth, i want to get view of an area larger than screen, how to get its print out?

    The latitude of area is 21 degree 7 minutes to 21 degree 17 minutes N and longitude 81 degree 14 minutes to 81 degree 33 minutes E.I am using google earth, i want to get view of an area larger than screen, how to get its print out?
    zoom out and you will see a larger areaI am using google earth, i want to get view of an area larger than screen, how to get its print out?
    Take a plane ride over the area and snap a picture.I am using google earth, i want to get view of an area larger than screen, how to get its print out?
    what they said

    Can someone random trace my cell phone number?

    so if someone i dont know has my cell phone number, is it possible for them to trace whos phone it is, or where i live or where i am or anything? so none of that google latitude crap or anything cuz i'm assuming you have to be friends for that, this is a random person who does not know me, just somehow has my number.Can someone random trace my cell phone number?
    There's websites you can pay and track it. If he's willing to spend some money, he can trace the number. There's also GPS tracking. Google lattitude can trace a mobile phone. People can guess random numbers as well, and if by chance it's yours, you could have a creep hacking you. There's people who save all of your conversations, etc. And if people somehow hacked them it could happen.


    The potential uses of this technology are crazy, and Google is just getting started by integrated it鈥檚 cellular triangulation technology with Google Maps. So many crazy internet freaks can take the time to do this as well, and hack into your facebook accounts or e-mail or anything like that, so if you gave your number through email or anything creeps can find them. You never know who is going to hack into your internet and accounts. There are web sites like Ussearch that if you look up a cell phone number, you can get information about that number.You can find out whom is the account holder and where they live. A well-armed techy can find you. Check out Wireshark and NeoTrace. If the person is willing to pay, your address can be obtained if your cell phone number is known. Be careful!

    The only way you can really make sure no one hacks it is to use a restricted number.... I don't know how but you could look it up on google!

    Good luck! If you are having trouble with phone calls or texts (weird creepy or obsessing and annoying constant ones) then contact the police and they will do something about it.Can someone random trace my cell phone number?
    Yes, there is this website where you pay and they uses the satellite to trace your bandwidth to the location.