Find Address from a given LAT/LONG

Hi All,
I need your help in finding an address from a given co-ordinates(Latitude,langitude). Please let me know your ideas.
Thanks

I don't know if I am missing something but requirement seems to be simple, you want to know the 30 week alter date...
in a week you have 7 days so 30 weeks will have 30*7 = 210
select to_date('20080114','YYYYMMDD') + 210 from dual
Try this...
If above is not the solution then then pls pur your input and output....

Similar Messages

  • Find Tcode from given userexit & Badi

    Hi Experts,
    i got a requirement to find Tcode from the given userexit and badi,  Can anyone help me to find the Tcode .
    Note: I know how to find the userexits & Badi from the Tcode.
    Please help me to find the Tcode from the given userexit.
    Thanks  in advance.

    Hi,
    If you know the exit name; then goto table MODSAP and get the enhancement for the same.
    Then go to SMOD and get the package name...based on the package name, got to se80 and get the transaction name from the object hierarachy...
    Sometimes you may have the enhancement name in the program name(enhancementname)
    Hope this helps you
    Regards
    sk

  • After upgrading from Mavericks to Yosemite I can no longer find in Mail the icon (looks like the Add To Contacts icon without the   mark) I used to press in order to obtain an e-mail address from my contact list. What procedure should I use now in or

    After yesterday upgrading from Mavericks to Yosemite I can no longer find in Mail the icon (looks like the Add To Contacts icon without the + mark) I used to press in order to obtain an e-mail address from my contact list. What procedure should I use now in order to quickly add an address to an e-mail that I wish to send?
    Bob

    On the right of the To: field you will see a circled plus sign:
    Click it.

  • Oracle Spatial function to find nearest line string based on lat/long

    Hi,
    Here is my scenario. I have a table that contains geometries of type line strings (the roadway network). The line geomteries are of type Ohio state plane south (SRID 41104).
    I have a requirement - given a lat/long, find the line string that snaps to that lat/long or the nearest set of line strings within a distance of 0.02 miles.
    This is a typical example of trying to identify a crash location on our roadway network. The crashes being reported to us in lat/long thru the GPS system.
    How can i acheive this through any spatial functions?
    Thanks for the help in advance.
    thanx,
    L.

    Hi L,
    That is not the way I would do it. I would convert my road segments to LRS data, then you can do all queries on the same data.
    Or, if you do not want to modify your original data, create a copy of your road segments with the same ID's and convert the copy into LRS data. If you keep the ID's identical, you can easily use geometry from one and LRS data from the other - as long as you are sure the ID is the same.
    Which will make the workflow a bit easier:
    1. Use SDO_NN to get the closest segments
    2. Use SDO_LRS.PROJECT_PT to get the projected point
    3. Use SDO_LRS.GET_MEASURE to get the measure
    And most of these you can incorporate into one single query. Now I am writing this of the top of my head (It's been a while since I played with LRS). so this has not been tested, but something like this should work (but could probably be greatly improved - it's getting late for me :-) ):
    SELECT
    SDO_LRS.FIND_MEASURE  --//find_measure needs an LRS segment and a point
        SELECT            --//here we select the LRS segment
          r.geometry 
        FROM
          roadsegments r
        WHERE SDO_NN(r.geometry,    --//based on the given GPS point
                     sdo_geometry(2001, 41104, sdo_point_type(lat,lon,NULL), NULL, NULL), 
                     'sdo_num_res=2 distance=0.02 unit=mile') = 'TRUE'
      SDO_LRS.PROJECT_PT  --//We project the point on the LRS segment
          SELECT         --//here we select the LRS segment (again, which could probably be improved!!)
            r.geometry 
          FROM
            roadsegments r
          WHERE SDO_NN(r.geometry,
                       sdo_geometry(2001, 41104, sdo_point_type(lat,lon,NULL), NULL, NULL), 
                       'sdo_num_res=2 distance=0.02 unit=mile') = 'TRUE'
        sdo_geometry(2001, 41104, sdo_point_type(lat,lon,NULL), NULL, NULL) --//The GPS point again
    AS milemarker from dual;So it is not as complicated as you think, it can easily be done with just one query (SQL can do a lot more than you think ;-) ).
    Good luck,
    Stefan

  • Find driving distance between two points without using API by use of Lat & Long?

    Using Google geocode API : http://maps.googleapis.com/maps/api/geocode/xml?address=thane&sensor=true
    We performed get distance between search criteria entered by user and all related clubs by lat & long  stored at db.
    2. Two different points such as  
    (origin: Lat1 & Long1) and (destination: Lat2 & Long2)
    We tried for to get distance between these two points,
     (Lat2 & Long2) to (Lat1 & Long1)
    But distance which we get by calculation is simple straight line distance 
    Origin Destination
    (Lat1 & Long1) (Lat2 & Long2)
    3. This is not driving distance as google shows in exact Km
    4. For that Google provide another API (distancematrix API)
    http://maps.googleapis.com/maps/api/distancematrix/xml?origins=Thane&sensor=true&destinations=khopat&mode=driving&language=en%20-%20EN
    5. But there is limit for DistanceMatrix-Service without ClientID and client key
    100 elements per query.
    100 elements per 10 seconds.
    2 500 elements per 24 hour period.
    But as element request exceeds it shows : OVER_QUERY_LIMIT error  
    6. In case of Client ID and Client key
    In Distance Matrix 100 000 elements per 24 hour period,a maximum of 625 elements per query and a maximum of 1 000 elements per 10 seconds.
    As per this one there is option to get purchase these API but basic question is remain same for us if we are requesting single origin and multiple destination then how element calculation done by google?
    But in document google says :
    Elements
    The information about each origin-destination pairing is returned in an element entry. An element contains the following fields:
    Status: See Status Codes for a list of possible status codes.
    Duration: The duration of this route, expressed in seconds (the value field) and as text. The textual representation is localized according to
    the query's language parameter.
    Distance: The total distance of this route, expressed in meters (value) and as text. The textual value uses the unit system specified with the
    unit parameter of the original request, or the origin's region.

    Any information that you see in a google map webpage can be retrieved using the API.  The best way of finding the tags on the webpage is to manually perform the query using an IE webpage.   Then capture the source and save to a file so you
    can use a text editor to look at results.  I often on a webpage use the menu : View -  Source and then copy the source to a text file.
    jdweng

  • Help needed to write algorithm to find Direction given lat/lon

    Hello, i need an algorithm to find out the direction being traveled given the starting and ending lat/lon decimal coordinates. Anybody have any clues how to do it? or where i can find one to just plug into my program? thanks for your help
    public String getDirection(double prevLat, double prevLon, double newLat, double newLon) {
        String direction;
        return direction;
    }

    Perhaps this helps:
    http://www.cssd.ab.ca/tech/social/latitude/index.html
    It will help you learn the meaning of lat/long-coords. I think you will end up with somthing like this:
    if ( prevLat < newLat) {
       //we are travelling north
    else {
       // we are travelling south
    if (prevLong < newLong) {
       //we are travelling east?
    else {
       //we are travelling west
    }This could be wrong, since there is a west-long and an east-long..
    Anyhow, hope this gets you on your way.
    ps: is this a class-assignment??

  • Have searched Forums for quite some time now. Cannot find a correct answer to: how do I prevent my old email address from appearing as the "from:" address

    Have searched Forums for quite some time now. Cannot find a correct answer to: how do I prevent my old email address from appearing as the "from:" address when I use a "send this" link on a webpage/news article. The email window opens and automatically inserts my old Hotmail address instead of the Yahoo address I've used for a long time. (The drop-down won't let me change it or delete it.) Thanks.

    Do you get a drop down list with suggestions if you clear that "from" field and click elsewhere on that page to move the focus off that field and then double-click again in that field or start typing the first letters of that unwanted email address?
    Use these steps to remove saved (form) data from a drop down list:
    #Click the (empty) input field on the web page to open the drop down list
    #Highlight an entry in the drop down list
    #Press the Delete key (on Mac: Shift+Delete) to remove it.
    *Form History Control: https://addons.mozilla.org/firefox/addon/form-history-control/
    *Tahoe Data Manager: https://addons.mozilla.org/firefox/addon/data-manager/

  • How does one remove temporary files from Safari?  A friend logged on to her Facebook account using my iMac.  Now I can't remove her e-mail address from Facebook.  It was suggested to me that I try clearing temporary files from Safari but I can't find

    How does one remove temporary files from Safari?  A friend logged on to her Facebook account using my iMac running Mac OSX 10.7.5 and Safari 6.1.6.  Now I can't remove her e-mail address from my computer.  When I open Facebook her address shows in the user button.  I do not have a Facebook account.  It was suggested to me that I try clearing temporary files from Safari but I can't find anything that tells me how to do this.  Are temporary files the same as the cache?  It also was suggested that I try clearing Safari cache.  How do I do that?

    Check Safari/Preferences/Passwords to see if the Facebook account is there. If so, select it and remove it. If you are still having problems, Safari/Preferences/Advanced - enable the Develop menu, then go there and Empty Caches. Quit/reopen Safari and test. If that doesn't work, Safari/Reset Safari.

  • How do I delete an email address from my icloud account as I am no longer friends with this man

    Hi,
    How do I remove an email address from my icloud account as I am no longer friends with this man and every time i type an s his email address comes up - I want this to stop

    If you haven't already removed the email address from your contacts in cloud, you may want to start there.  If that doesn't work, then you may be out of luck.  Unfortunately, smartphones remember things we don't want them to :-(

  • I have recently upgraded my iBookG4 from Tiger to Leopard 10.5.8 and find my Bluetooth USB adaptor no longer connects. The Bluetooth pane says inactive. Does Leopard require  USB 2.0. I've had the adaptor for some time so may be USB 1.0

    I have recently upgraded my iBookG4 from Tiger to Leopard 10.5.8 and find my Bluetooth USB adaptor no longer connects. The Bluetooth pane says inactive. Does Leopard require  USB 2.0. I've had the adaptor for some time so may be USB 1.0

    Bluetooth icon on menu bar shows bluetooth off. When opening bluetooth preferences it shows the devices I've connected previously,( my mobile phone), and other devices I've attempted to connect but not very successfully: my iPhone and MiniMac.  The bluetooth dongle in the USB port shows a continual blue light but does not react and the iBook does not recognise that it is there. There is absolutely no reaction when I try to pair my mobile phone, which I've done successfully before upgrading to Leopard, either by the iBook or the mobile phone.
    I assumed that Tiger was not bluetooth compatible with the iPhone or MacMini running SnowLeopard and hoped by upgrading to Leopard I could achieve some file transfers between the three devices (iBook, iPhone and MacMini)

  • How to hide or rename the HP Printer's Mac address from Lion Finder Sidebar

    I have an HP d100a all in one printer, and since upgrading to OSX 10.7 (Lion), my printer's mac address shows up in the Finder Sidebar under Shared devices. I understand this is for the printers SD card slot to be shared over my network, however the name is not user friendly.
    Is there a way to rename what is displayed in the Finder window, from the devices mac address to a friendlier name?
    If not, is there a way to disable the sharing of the SD card slot so it is hidden from the sidebar completely?
    I have found several posts from people not knowing what this entry is, but I have not managed to find any posts that explain how to rename or hide the entry.
    Any help would be greatly appreciated. 

    I have also registered to this forum to inform that the problem with showing the MAC-address in the sidebar of the finder is still not solved.
    The strange thing is that the Embedded Web Server says:
    "This specifies the Bonjour domain name assigned to the device, in the form <host name>.local. If a user-specified host name has not been assigned, the default host name HPxxxxxx is used, where xxxxxx are the last 6 digits of the LAN hardware (MAC) address. This option cannot be modified."
    But I did assign a user-specified host name and that name does show-up everywere (also within Bonjour), except in the sidebar of the finder (hp###xx##x####). Lots of people have the same issue, when searching on the interet, but not one has found the solution.
    Please help with solving this issues?

  • Recently I have switched out computers and had copied/ transferred my I ITunes library to the new computer and encountered problem.  Many of the songs in the library were purchased from my old email address of that I no longer use nor did I remember the o

    Recently I have switched out computers and had copied/ transferred my I ITunes library to the new computer and encountered problem.  Many of the songs in the library were purchased from my old email address of that I no longer use nor did I remember the old password in order to authorize playing from the new computer.   Request advice/assistance to where I am able to play songs acquired through lost password?

    This is a user to user tech support forum.  Posting questions and getting responses here is the extent of the support.
    If you want phone support, call Apple and pay for it.
    Posting your phone number of a public forum is not smart, I have asked the moderators to remove it.

  • Mac stolen, Find My Mac found it, get IP address from Apple?

    Five Macs were stolen from our non-profit Friday night. A few minutes ago Find My Mac found one a few miles away, with a pretty good street location (no proof of which house).  Apple obviously has the IP address of the location, but it's not in the Find My Mac report (perhaps to prevent vigilantism).  Unfortunately neither the police in the stolen location nor the potential recovery location are interested in doing research.
    Can Apple give (or be compelled to give) the IP address to the police, so the police can get the street address from the ISP (it's a residential area, so likely cable or DSL)?
    Anyone have experience with this?   Thanks.

    I just spoke with excellent Apple support (really, no sarcasm).  They obviously have the IP address of the Internet connection where the stolen Mac was booted (how else could Find My Mac report it?).  They gave me the phone number of Apple legal that the police need to call to get that IP address from Apple, so that the pertinent ISP can then supply the street address (or the cell ID if hot spot--yes, could be a throw-away) of the boot location of the stolen Mac.  The process can take a while, but the perp's (or the fence's) location or ID is the permanent record.
    I think the police need to be prodded, but they may say it's too low level.  Although they did say our office complex has been a target lately.

  • Finding IP address from Client ID?

    From an Android tablet:  How do I find the IP address of a computer in my network if the know the client ID? It's easy from a desktop:  I just bring up Hamachi and everything is revealed.  If I use the tablet browser to view my Hamachi networks (at the Hamachi site), the page is compressed horizontally and part of the IP address is hidden. Apologies if I have missed this in the documentation or knowledge base.

    try
              request.getRemoteAddr() to get IP of Client
              request.getRemoteHost() to get HostName of Client
              "Matt Raible" <[email protected]> wrote in message
              news:3a9c1efc$[email protected]..
              > Does anyone know how to obtain the IP address from the client? I need to
              > get it in a servlet to set it as a session variable.
              >
              > Thanks,
              >
              > Matt
              >
              > P.S. Please send reply to [email protected]
              >
              >
              

  • Find IP address from which Document Changes are done

    How to find out from which IP Address the user has made changes to the SD Document.

    Sat is correct, the change log does not go down to that level.  The lowest level would be user, date, time.   I suppose if it was necessary, you could use a user exit to get the current IP and update a custom table  with the data.  I'm not really sure of the point though.
    Regards,
    Rich Heilman

Maybe you are looking for

  • Abap dictionary activation problem when transfer request dev to prod

    hi experts i develop enhancement in that i append structure in afru table. when transfering requset dev to production there is error abap dictionary activation . thanks ajay

  • Multiple Problems with N93! Please Help!

    I've had the N93 for about 2 weeks and have come across many problems. Any help will be greatly appreciated! 1. Cannot remove themes - I used to own a 7610 and to delete themes from that phone you just went into themes/options and deleted it. The N93

  • Remote connection SQL

    Hallo  Hope all are well. I got problem connecting from remote computer to SQL server, Connecting via SQL Manangement studio on local machine where server is installed no problem. If I disable the Windows firewall on the server I can create remote co

  • Sync problems Error 39

    I have just bought a new iMac. I never had a problem with the sync on the old Mac. I managed to transfer apps etc from my iPhone (original) and it sync'd OK the first couple of times. I've since had problems with the sync, including iPhone not recogn

  • My Macbook won't run any discs?

    I've Treid Dvd's, and games and neither are running, It just spits them back out?