Is it possible to import and display/plot (Google Earth) KML files as overlays in Mac OS 10.9 Maps application?

Is it possible to import and display/plot (Google Earth) KVM files as overlays in Mac OS 10.9 Maps application?
Here is the particular application: (note I haven't gotten the code to compile yet -- seems to be several differently named environment variables in Mac unix than in Linux that are making the compile blow up -- but that's another issue) there is a freeware application that can do radio path loss prediction and plot path loss contours on a map. It has an option to output the data as KML files which can be imported into Google Earth, in order to display the path loss contours on Google Earth maps. I guess you could liken it to displaying overlays of GIS-like data in Google Earth. I would like to know if there is a mechanism to facilitate importing KML data files to overlay (preferably in a translucent fasion so that you could see the underlying map) onto Mac OS 10.9 Maps?

varjak paw wrote:
They're also known to patent things they never release. So while it indicates that they're investigating such things, a patent application is no guarantee that anything will ever come of it, much less be immanent. And that application was filed in 2012 and is really for something rather different.
Regards.
As I stated, "possibly."
While the commerce side of it has little to do with the KML files, per se, the API for the layer data should allow for any type of overlay.
Also, the patent was filed Dec 19, 2013. There was a related patent filed in 2012. Not sure what it is about.

Similar Messages

  • Is it possible to import and export dump between oracle 9 and oracle 11?

    Is it possible to import and export dump between oracle 9 and oracle 11?
    Source DB : Oracle 11g(unix0
    Oracle client : Oracle 9(Windows)
    Export import utility : Oracle 9's
    Destination DB : oracle 9

    I am getting the Following Error and export utility is not responding after this.
    Export: Release 9.2.0.1.0 - Production on Thu Jul 15 14:37:01 2010
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    server uses AL32UTF8 character set (possible charset conversion)

  • Importing and displaying captions from Aperture to iPhoto

    I'm using Aperture as my main photo library, then exporting select pictures with a copyright watermark on them. Then I'm importing those watermarked photos into iPhoto so that I can drag them into albums in iWeb (so the watermarks show).
    I'd like for the captions to show under the photos in iPhoto, but instead the keywords do. I can't find a place to require iPhoto to display the captions other than the little caption window in the lower left of the window.
    Problem is, I need the captions to chow up ultimately under the photos in the iWeb albums, but they don't. Instead, it's the keywords that show up, just like they do in iPhoto. My reasoning is that if I can get the captions to display under the photo in iPhoto, they will do the same in iWeb (I could be wrong on this).
    So the ultimate question is: how to get iPhoto to import and display Aperture-entered captions and then pass them on to iWeb.
    I've seen a few variants on this topic, but none that specifically address this issue.

    Randy
    There is no way to make iPhoto display the captions under the Photos in iPhoto. For specific help with iWeb, try posting on that forum.
    Regards
    TD

  • Is it possible to import and export Config Toll Configuration  from one sys

    Hi All,
    Is it possible to import and export Config Toll Configuration  from one system to Another system (QUS/PRD), for especific service.
    Kindly let me know the pro and corn of it and step by step process
    Thanks alot for your time.
    Thanks
    AB

    Yes...It is certainly possible but then you would need to bring OS level j2ee filestructure as well and there are lots of changes at OS level in *.properties file and then at configtool level changes related to hostname, system numbers and port numbers etc.
    This is not much difficult but not impossible also if you do it very carefully. Please note that SAP DOES NOT SUPPORT THIS METHOD.
    alternatively, you can use sapinst to export-import j2ee filesystem from source to target which inturn would require to do configtool export/import and then changes at configtool level.
    Do let us know your requirement so that we cud help you in case you are facing any issues.
    cheers !!!
    Ashish

  • Treat JPEG files next to raw files as seperate files still imports and displays them as seperate images

    Hi, I am taking RAW + JPEG files on a Nikon D810. The RAW files are saving to a CF (primary slot) and JPEGs to an Eye-Fi card (secondry slot). When I am importing into Lightroom 5 directly from the camera, even though I have 'Treat JPEG files next to raw files as seperate files' UNchecked in preferences, it still imports and displays them as seperate images. I am trying to import the JPEG as a sidecar file only to the RAW file as I have read about but this is not happening, any ideas why? Thanks

    Well in Lightroom they are apart from each other before the actual import, all the JPGs list first then all the NEF files next. The same actual photo as the NEF or as the JPEG both have the same file name apart from the .JPG or .NEF so that is not the problem. The NEFs go to the CF card and the JPGs go to the EyeFi SD card, I think you are onto the issue but I'm not sure what I need to do to fix it. I guess I need to change a setting on the D810 itself. There really doesn't seem to be any other settings apart from the RAW + JPEG vs only one or the other and allocating which card is primary for the RAWs and which card is secondry for the JPEGs. I really need the JPEGs to go to the EyeFi SD (secondary) for live iPad image viewing and not to the same primary card (CF) as the NEFs (RAWs) go. This does seem to be a typical setup so I would think it has been encountered before.
    Thanks for your help any other advise is appreciated.

  • How to load and display the external flv video files in dynamicly and the how to control the flv fil

    How to load and display the external flv video files in dynamicly using AS 3.0
    and  How to control the flv file  add the play paus button and add seekbar.
    I have using to load the flv file following code
    var flvPlaceHolder1:MovieClip = new MovieClip();
    var vid1:Video = new Video(734, 408);
    flvPlaceHolder1.addChild(vid1);
    addChild(flvPlaceHolder1);
    flvPlaceHolder1.x = 1059;
    flvPlaceHolder1.y = 152;
    var nc1:NetConnection = new NetConnection();
    nc1.connect(null);
    var ns1:NetStream = new NetStream(nc1);
    vid1.attachNetStream(ns1);
    var listener1:Object = new Object();
    listener1.onMetaData = function(evt:Object):void {};
    ns1.client = listener1;
    ns1.play("GV-1600 TURNING.flv");
    ns1.addEventListener(NetStatusEvent.NET_STATUS, statusChanged1);
    function statusChanged1(ns1:NetStatusEvent):void
             trace(ns1.info.code);
            if (ns1.info.code == 'NetStream.Buffer.Empty')
                 trace('the video has ended');
                 removeChild(flvPlaceHolder1);
                 //trace('removeChild');
                gotoAndPlay(1786);
    then how to add the play,paus ,full screen button    and   seekbar,volumebar.

    I have to Create the flash presentation for our company product
    In this presentation the left  side the text animation are displayed then right side the our product video is displayed.
    In this presentation i need the following option :
    1, The first product video and animation is finished then the next product is played
    2, then the video displayed  (size width and height 400x300) , I click this video to increase the size(ex:1000x700)
    3, then the playing video i control  it play, stop, paus button and volume bar, seek bar.
    4, then this presentation is displayed on 42 inches LCD TV so this full presentation is run full screen.
    I have finished first two steps 1 and 2
    the following are the screen short and code:-
    code :-
    var count=0;
    var flvPlaceHolder2:MovieClip = new MovieClip();   
    var vid2:Video = new Video(734, 408);
    flvPlaceHolder2.addChild(vid2);
    addChild(flvPlaceHolder2);
    flvPlaceHolder2.x = 1059;
    flvPlaceHolder2.y = 152;
    var nc2:NetConnection = new NetConnection();
    nc2.connect(null);
    var ns2:NetStream = new NetStream(nc2);
    vid2.attachNetStream(ns2);
    var listener2:Object = new Object();
    listener2.onMetaData = function(evt:Object):void {};
    ns2.client = listener2;
    ns2.play("GS-4000.flv");
    this.addEventListener(Event.ENTER_FRAME, BtnFadeIn2);
    function BtnFadeIn2(event:Event):void
        if (this.currentFrame == 387)
            /*flvPlaceHolder2.x = 30;
            flvPlaceHolder2.y = 140;
            vid2.width=1800;
            vid2.height=800;
            trace('Screen size is changed');*/
            if(count==0)
            flvPlaceHolder2.x = 30;
            flvPlaceHolder2.y = 140;
            vid2.width=1800;
            vid2.height=800;
            count++;
    ns2.addEventListener(NetStatusEvent.NET_STATUS, statusChanged2);
    function statusChanged2(ns2:NetStatusEvent):void
        trace(ns2.info.code);
        if (ns2.info.code == 'NetStream.Buffer.Empty')
                trace('the video has ended');
                 removeChild(flvPlaceHolder2);
                 //trace('removeChild');
                gotoAndPlay(433);
    flvPlaceHolder2.buttonMode=true;
    flvPlaceHolder2.addEventListener(MouseEvent.CLICK,home2);
    function home2(e:MouseEvent):void
        if(vid2.width==734 && vid2.height==408)
            flvPlaceHolder2.x = 30;
            flvPlaceHolder2.y = 140;
            vid2.width=1800;
            vid2.height=800;
        else
            flvPlaceHolder2.x = 1059;
            flvPlaceHolder2.y = 152;
            vid2.width=734;
            vid2.height=408;

  • I get a dialogue box asking "What should Firefox do with this file" Options open with or save file. My wife selected save file and now it only opens note pad and displays the text of the file to be saved. OK in windows Internet Explorer.

    I get a dialogue box asking "What should Firefox do with this file" Options open with or save file. My wife selected save file and now it only opens note pad and displays the text of the file to be saved. OK in windows Internet Explorer.

    P.S. Site is http://www.coldwatercreek.com

  • How do I "import" and "sync" my "google" and "safari" "bookmarks" to my new "iPad" from my "macbook"?    Is There A Way I Can Use a "Stylus" With My New "iPad" I've Got "Mobility" "Disabilities"?

    How do I
    "import" and
    "sync" my
    "google" and
    "safari"
    "bookmarks"
    to my new "iPad"
    from my "macbook"? 
    Is There A Way I Can Use a "Stylus" With My New "iPad"
    I've Got "Mobility" "Disabilities"?
    <E-mail Edited by Host>

    You can use iCloud to sync your Safari bookmarks between your Mac and your iPad.
    Instructions here >  Apple - iCloud - Learn how to set up iCloud on all your devices.
    Personally, I like the Wacom stylus for iPad >  Amazon.com: Wacom Tech Corp. Bamboo Stylus for iPad/Tablets: Computers & Accessories
    And try the accessibility features on your Mac. Open System Preferences > Accessibilty
    Apple - Accessibility - OS X
    I just noticeed on your other thread you mentioned that you've had your Mac for seven years so iCloud for syncing bookmarks may not be an option for you unless your Mac at the minimum is  running v10.7.5 with at Safari 5.1.1. See, "Bookmarks" >   System requirements for iCloud

  • I set up my new computer using the apple ID i always use, and then later migrated all my files from my old mac book to the same new one, but under a different user (same ID). how do i consolidate the two users on my new mac book?

    i set up my new computer using the apple ID i always use, and then later migrated all my files from my old mac book to the same new one, but under a different user (same apple ID). how do i consolidate the two users on my new mac book?

    Well if you use the Finder Go menu to Computer, a window opens up double click on your boot drive and then on Users folder, open the other user folder and open Public and drop your files into DropBox
    When you do this it will copy them and change the permissions and user assigned to it, so log into the other user and place them into your respective normal folders.
    Once you have all your files over and don't need the old user, use System Preferences > Accounts to delete it if you wish, however it's good two Admin accounts on the machine in case something bad happens in the other. Some people for security reasons on use a Standard account for most uses and a emergency Admin account.
    One can still do most Admin things in Standard user.

  • Import and Display GIF images

    Hi,
    I'm trying to manage images in Abap program.
    Reading on this forum, I'm able to import BMP e TIFF files (via SE78) and display them into a customer control.
    Now I'm trying to manage also GIF images.
    I'm using tc SMW0 to import gif images but with no result.
    This is what I done:
    1. call SMW0
    2. select BINARY DATA
    3. Run (no parameters specified)
    4. New button
    5. Import the GIF file.
    The system display the "No MIME type assigned to object D:\logo.gif" and no images is added.
    What I have to do?
    Thanks
    Salvatore

    Hi Salvatore,
      To display the images in Container you need to
      maintain tem in Business documnets.
      Follow the below steps :
    1) Goto tcode OAER.
    2) Give class name, as type 'OT' and Key name.
    3) Execute it and here you create document and select
       screen in the Document types then upload the bmp or
       gif file and save it.
    4) After that use this in when displaying in Container.
    Thanks&Regards,
    Siri.
    Kindly award points if it is useful.
    Message was edited by: Srilatha T

  • Import and Integrate 2 or more dmp file to be One database

    Hello All,
    I have some problem with my database oracle
    I have application which running in some place in our city and in center office
    Then, i want to improve our application which we need to integrate all of our database from some places in our city with database in our center office.
    Now i have dump file from our center office and branch office in other city, i called it :
    - db_bandung.dmp, db_jakarta.dmp (from branch office)
    - db_center.dmp (from center office)
    Then how i can import and integrate some database above in one database ?
    Help me please..

    808804 wrote:
    So, what your suggesstion for me for this case ?
    help meYou need to manipulate the conflicting IDs - the ones which are violating the constraints - so that you have different ranges in all branch office tables and head office tables. You also need to manage the referential constriants, if any and update them too.
    Then you can import those manipulated dumps under a single schema.
    Needless to say, do all these activities in a test environment first before you do anything to production databases.

  • Can any one answer me how to import and use jsp libraries into uix file and

    Hi guys
    can any one help me how to import jsp libraries in to my uix file with jdev 10g production adn how to use them..if any one got any sample for this i appreciate if u cans end me that
    thanks
    Venkat

    you cannot use jsp tags inside uix xml pages.
    you can, however, use uix jsp tags inside jsp pages.

  • Is it possible to create a google earth kml or kmz file with photos from aperture?

    It is possible to obtain a plugin for Lightroom that will create a single google earth file that includes all geo tagged photos on a track viewable in google earth.  Does anyone know if this is possible from within Aperture?

    Frank,
    Thanks for your quick post. My question involves the zipping up together a batch of geotagged photos along with the track, not necessarily the procedure for importing tracks; I am already familiar with that.  I would like to do this from within Aperture.  Since the first posting this morning I have downloaded Picasa for the Mac.  I know I can do what I want with that software.  Thanks again.
    Rob

  • How to see stars and constelations from Google Earth app?

    I've recently downloaded the Google Earth app onto my iPhone and it works fine. I thought I read in Sunday Times that you could view the night sky from your location and so see the stars and constellations. Can anyone tell me how to do this please?

    When you first turn on Google Earth you can see the stars and minimize and rotate the earth and you will see the constellations. They appear accurate.
    There are some apps you might want to download if you are interested in astronomy:
    Planets
    Distant Suns lite
    Stars
    Hubble
    MoonMaplite
    they are all free. There are some good paid apps available also.

  • How to import and display an applet from JSP

    i m using netbeans 5.0
    i have class named myapplet.class
    and jsp named myjsp.jsp
    now i want to access(import) this myapplet.class from jsp
    also i want to display this applet from this jsp
    i am able to do either thing but not both
    so please help me it is so urgent and important for me bcoz
    i have to complete my project as early as possible
    Thanks in advance

    my jsp source file page path is D:\Reliance
    project\WebApplication3\web\
    and classes path is D:\Reliance
    project\WebApplication3\build\web\WEB-INF\classes\
    so problem is that if i want to use myapplet.class
    then i have to put my class in D:\Reliance
    project\WebApplication3\build\web\WEB-INF\classes\
    location
    but at that time i am not able to display this applet
    on my jsp
    if i put my myapplet.class in
    D:\Reliance project\WebApplication3\web\ then i m
    able to display
    applet but not able to access(import) this class
    hope you will got the problem!!!
    thanks for your reply !!!try to set the path of your applet on jsp something like this
    "WEB-INF/classes/myclass.class"

Maybe you are looking for

  • Boot Camp / Windows Partion... Can it be installed on a separate hard drive

    I am just beginning to explore the idea of installing Boot Camp & Windows on a new Intel Mac I will be buying. I've been reading a lot of references to the Windows partition... Can I dedicate a separate hard drive to Windows rather than partition my

  • Missing tools pallette

    Hi-  I'm new to labview, and I'm following a tutorial based on the temperature system demo.vi My problem is that when I click on Windows>>Show tools pallette  Nothing happens; no pallette appears.  What do I have to do to get to the tools pallette?

  • Invalid Application Path

    Hello, While creating a new FDM application I am currently recieving a message that states that the application path is invalid. Path statement currently being used_ \\SeverName\D$\Hyperion\products\FinancialDataQualityData\AppName Can someone please

  • Calling a Function node in a DLL to give force-feedback effect to a joystick (using DirectInput)

    Hello, I have been working for a couple of weeks on writing a DLL in Visual C++ Studio. My intention is to write an exported function in the DLL to initialize a Logitech Force3Dpro joystick, setup a force feedback effect and run it using DirectInput.

  • Getting java.lang.IllegalStateException  when try response.sendRedirect(cv)

    hi, I am getting this error java.lang.IllegalStateException when i am trying to send response to a jsp page here is my code try{           Class.forName("com.mysql.jdbc.Driver");           Connection con = DriverManager.getConnection("jdbc:mysql://lo