Finding point on the map by lat./long.

Hi experts,
I've Oracle9i with Mapviewer 10.1.3.1 Base map contains only one layer with SDO_GEOM column (SRID 8307). User define latitude/longitude and my application must show this point on the map, even there is no object corresponding with these latitude/longitude. How can I reflect this geographical coordinate on the map ?

Duplicate post. 
Go HERE.

Similar Messages

  • 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

  • Issue with cisco prime adding aceess point in the map and move in the final position

    I have an Cisco Prime infrastructure with a 2.1.1 version, I created a new campus, a new building, a new floor after that i want to add access point in one floor i can add 4 access ponit but in other one floor I add first 3 access points successful bunt when i try to add a new access point in the same floor tha access point it is added but I can not move it to the final possition on the map.
    the cisco prime shows the followging message
    Cannot find feature by (Mac/Name/ID) null
    how can I move the access point into the last possiton ?

    Duplicate post. 
    Go HERE.

  • When I click on my address in my contact entry Google maps show diferent point at the map

    Please,
    On iPhone 4, iOS 5, When I click on my address in my contact entry Google maps show diferent point at the map

    Do you have a WiFi only iPad?
    If yes, go to another site, like say a Starbucks, connect to their internet and click on the arrow to show your location. If it is correct then your router is reporting incorrect information. Wait and the database will eventually be updated.

  • Directions between two or more points on the map

    Anyone knows of an app for OSX and iOS where one can get directions between two or three or more points. (not a point and current location). In particular an app where one could create a multi-stop trip on OSX and then push it on to an iOS device where it would work as a map and as a navigator?
    Tip: Apple Maps apps can't do this. They only allows one pin on the map and directions form current location to the map. Which is utterly useless for trip planning. And yes I know I can use Google Maps for that. But I want to stay away from Google.
    Thank you all for your input.

    you can get directions between two points neither of which is your location on the current ipad app. steps:
    launch the app
    drop a pin on one of the  points
    click on the right side of the baloon that opens over the pin
    select directions to or from the location
    a pane opens on the left side of the app
    click into the start or end field that has "current location"
    type in your desired start/end point and select the correct location from the drop down list that populates as you type
    click on "route"
    your route options will appear between the two points

  • At what point would the CS6 suite no longer be (seamlessly) compatible with CC suite/applications?

    I have the CS6 on my office computer and CC installed at home. I want to remove a few CC applications I inadvertently installed on office computer to free-up space.  I am; however, concerned that as CC updates on my home computer, I'll be forced to save to compatible file types, e.g. IDML for InDesign.  Moreover, I've been using the CC software (e.g. Adobe InDesign CC vs. Adobe InDesign CS6)  at the office and wonder if there will be compatibility issues once CC is gone and I return to using CS6.  While I could remove the entire CS6 suite and just use CC on office computer, I would rather have the additional CC install for a personal computer since I'm paying for the subscription and my company paid for CS6.  Any thoughts/suggestions would be greatly appreciated.   Thank you. 

    There is no single answer... any answer is specific to the individual program
    For instance... a Premiere Pro CC project file is not backwards compatible with Premiere Pro CS6
    You will need to ask in the individual forums
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • How to create a circle object with center(lat/long) and radius(kilo)?

    Hi
    I want to create a circle in my table, the data I have are the coordinate of center(lat/long) and the radius of the circle. The srid of the table is lat/long.
    Did I have to use some fomula to compute the coordinate of three points on the circle? If it's true, is there any example procedure you can show me?
    Thanks
    Lannie

    When a circle is created using SDO_BUFFER in geodetic space,
    the result is a circle with stroked arcs (as in arc_densify function).
    So the result from SDO_BUFFER will be a valid polygon without arcs,
    but approximate circle with straight lines.
    For example, in the example given by Dan, this is what you get:
    SDO_GEOMETRY(2003, 8307, NULL, SDO_ELEM_INFO_ARRAY(1, 1003, 1), SDO_ORDINATE_ARRAY(-120, 42.09003, -120.03128, 42.086958, -120.06042, 42.0779524, -120.08543, 42.0636292, -120.1046, 42.0449675, -120.11663, 42.0232424, -120.1207, 41.9999365,
    -120.11654, 41.9766391, -120.10445, 41.9549369, -120.08526, 41.9363067, -120.06028, 41.9220148, -120.0312, 41.9130321, -120, 41.9099686, -119.9688, 41.9130321,
    -119.93972, 41.9220148, -119.91474, 41.9363067, -119.89555, 41.9549369, -119.88346, 41.9766391, -119.8793, 41.9999365, -119.88337, 42.0232424, -119.8954, 42.0449675, -119.91457, 42.0636292, -119.93958, 42.0779524, -119.96872, 42.086958, -120, 42.09003))
    siva

  • Is there a way for GPS coordinates to override a 'places' tag when viewing photos on the map?

    I like to have 'places' tags for all of my photos in Elements Organizer so I can filter photos without the map view.  The problem is that some of my photos already have GPS information from my camera.  When I tag a photo that has EXIF geo data with a 'places' tag, it moves the photo on the map to the less specific lat/long of the tag and no longer uses the lat/long of the photo itself.  I would like to use the data EXIF data from the photo, if it exists, rather than the lat/long from the places tag.
    Alternately, it would be cool if Elements would auto-create places tags based on the lat/long from a photos EXIF data.  That would also solve my conflict between places tags and EXIF data from the photo. 
    Any ideas?  Am I out of luck?

    Why don't you just put a passcode lock on the phone so no-one else can use it when you're not around?
    You can look at the history in Safari, but that won't prevent someone from clearing the history and cookies after they use it.

  • How to Limit the Displaying of Data Using PointTheme over the map

    Hi,
    I have the following requirement, which i'm trying to implement with <dvt:map & <dvt:PointTheme components.
    *The requirement is ... I have a base map, which is being accessed via <dvt:map component. And i'm using point theme to display certain data over the map. Let us consider, over the US map ... i'm displaying 24 points(for each polygonone point .... taking the centroid of each polygon) when the map zoom level is 0.
    At this zoom level '0', user can see all 24 points. But when the user start clicking on '+' to Zoom In(Now the zoom level is '1'), at this zoom level user can see only 18 points. User can see the remaining 6 points by dragging the base map to either sides.
    This mean, irrespctive of the zoom level the point theme is rendering the all the points over the map. Instead, i would like to display the data specific to the polygons that are visible to the user. At zoom level '0', if the user is able to see all the polygons, then display all 24 points. And at zoom level '1'...if the user is able to see 18 polygons and then display only those 18 points. And if the user tries to see the other polygons data ... user may drag the base map either sides. In that case, the point theme should render data specific to the polygons that the user is able to see.
    Similarly, if the user is at zoom level '2'...at this zoom level user is able to see 13 polygons over the IE. so the point theme should render only 13 points specific to each polygon. If the user tries to do dragging the base map either sides...then display the points, specific to the polygons that the user is able to see.
    Similarly for other zoom levels ... Please let me know if you require any other information.
    Thanks & Regards,
    Kiran Konjeti

    You'll need to do a little software workaround on the values you read from your counter.   But first a little tutorial to explain *why*.
    The E-series boards use 24-bit counters.  When LabVIEW requests an integer count value, the count is returned in a 32-bit unsigned integer datatype, where the 24 lowest bits represent the value in the board's count register.  The upper 8 bits are *always* 0's.
    The count register can increment from 0 to 16 million plus (2^24 - 1), then it must "roll over" back to 0 again just like an odometer.  Similarly, when it decrements past 0, it next goes to the max value of 2^24 -1 as you observed.
    So we need a little software workaround that'll convert (2^24 -1) to (-1) and (2^24 -2) to (-2), etc.  The way to do it is to first detect whether the highest bit is a 1.  One way is to compare whether the count value is >= 2^23, making sure to use integers to do the comparison.  Whenever the value is >= 2^23, subtract 2^24 from it to create your new count value which will then decrement 3,2,1,0,-1,-2,-3, etc. as desired.
    Here's a link to a similar explanation.  Couple more notes too.  First, if this is a continuously rotating encoder, you may still encounter a discontinuity when the revised count value crosses the +/- 2^23 boundary.   Second, direct connection of a quadrature encoder to an E-series board isn't recommended because of unrepeatability when measureing direction changes.
    -Kevin P.

  • Users are being logged into the desktop before the mapped drives GPO takes effect

    We are using a Group Policy object to map network drives to our users.  We are getting reports that the user are being logged into their desktop before the drives are mapped, causing a program that points to the mapped drive to not be able to access
    files on that drive.  Once the user goes into Computer and double clicks on the drive, they are then able to see the files on the drive and the program is able to access them as well.
    We have added another GPO to institute the "Always wait for the network at computer startup and logon" policy to try to fix the issue, but it has not solved our problem.
    Thanks in advance for any assistance.

    >   Once the user goes into Computer and double clicks on the drive, they
    > are then able to see the files on the drive
    Did you check the "reconnect" option?
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • How can I export the very cool Lightroom Map and link to the photos which show on the map?

    How can I export the very cool Lightroom Map and link to the photos which show on the map?
    I love the way Lightroom imported my .gpx files, automatically geocoded the photos, and show where I took them on the map.
    Would love to export this lovely map and the photos which have been geocoded to the map.
    Anyone know how to export this as an HTML file I can import into my web site.
    I'm a Realtor in Berkeley, and integration of the elegant map and the photos.  It would be perfect way to show my clients where the homes are, and what they look like.
    Ira

    You probably didn't get an answer because none exists within Lightroom.
    You can perform a screen caputre of the Lightroom map, and use the resulting JPG/GIF of your screen, however there is no way to hyperlink the point on the map to your photos.
    You might want to consider a non-Lightroom solution, such as uploading the photos to an Album on Flickr (or one of many other photo sharing web sites) and using the mapping capabilites there, which would be hyperlinked to your photos, see example below. You can use Lightroom to geotag the photos and then use Lightroom to upload to Flickr (or other web site) and then use the web site to create and display the map

  • TS4006 I got a email saying my lost iPhone has been found , but I went and checked and it isn't showing up on the map and it hasn't been 24hrs yet since I received the email! Why is this?

    I received a email saying my iPhone has been found and when I went to find it on the map in the app , it wasn't showing up on the map and it was in the 24hr time period , is there a way to locate my iPhone?

    Sounds to me like there may  be a hardware failure involved. Where exactly did you get the phone? Did you ever have it "unlocked"? If so, by whom? Did you ever jailbreak it?

  • Testing AP locations vs. Changing the map

    Hi;
    I am in an environment with over 40 very active access points that were added to a map that is now outdated in a very busy, ever expanding, warehouse environment.  The access points on the map have not been updated since 2009 and many are in the wrong place.  My executuve staff however is very sensitive about changing anything in this active environment because the APs are actively being used, anywhere from  18-20 hours a day, often supporting anywhere from 5-40 users at a time per access point (Each use is very little bandwitdh since its mostly orders and inventory of very small components). Because I don't have alot of room to experiment, I need to know if there is a way to update the maps and AP placements without affecting the existing environment. For example,  Can I create a new map using current floorplans and place duplicate APs on that map without affecting the existing ones? or can I simply change the underlying map without causing all of the access points to disassociate? I have been told if I move the placements on the existing maps they will disassociate and not work on the floor for up to 15 minutes which is a problem. We may be switching to a 24 hours facility and I need be able to do this before that happens.  We also consistently add APs, Floors and change the space with is affecting our coverage.  All of the information I've found doesn't address the way we use our wireless which is much more dynamic. Were using WCS 7.0.164.3 feature plus. We use lightweight APs of varying types.
    Any thoughts?

    Moving APs around in WCS/NCS and or Prime will be transparent to the wireless users. These management tools can be shut down and your wireless will still work fine as these are not a requirement. I change the APs location all the time so you shouldn't worry. It is fine.
    Sent from Cisco Technical Support iPhone App

  • Converting Lat/Long to UTM or MGRS

    Has anyone written a Labview application that converts from Lat/Long to UTM or MGRS
    Solved!
    Go to Solution.

    If you know the conversions from Lat/Long, lay down the algorithm for that conversion and we can try to help you get it into LabVIEW format. If you don't know an algorithm, you can always try looking for examples at http://www.ni.com/community.  Good Luck!
    National Instruments
    Applications Engineer

  • 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

Maybe you are looking for