3D Geodata conversion

Ask a Question related to Macromedia Flash Data Integration, Design and Development.

  1. #1

    Default 3D Geodata conversion

    I'm working on a mapping application that imports latitude and longitude data
    and plots it onto a 3D globe. Does anyone have experience with this? I'm not
    sure what the best solution to my problem is.

    You can see and download the code base from the open-source project here:
    [url]http://code.google.com/p/meadanglobe/[/url]

    I'm successfully plotting points onto the 3D surface of the globe, yet the
    translation of latitude and longitude does not seem accurate in more than one
    respect: 1) not oriented relative to the image of the globe, and 2) each node
    is not positioning correctly relative to each other (for example "Rome" and
    "Johannesburg" are right next to each other--when they should be thousands of
    miles apart!)

    I am using very standard translation method which I found here:
    [url]http://board.flashkit.com/board/archive/index.php/t-666832.html/[/url]

    Here is the code:









    xPos = app.radius * Math.cos(longitude) * Math.cos(latitude);
    yPos = app.radius * Math.sin(longitude) * Math.cos(latitude);
    zPos = app.radius * Math.sin(latitude);

    miquael Guest

  2. Similar Questions and Discussions

    1. Conversion - CF 5 to CF MX 7
      I have an application written in CF5. This application uses http://cfobjects.sourceforge.net/. Since CF5 is no longer available, I am going to...
    2. dxf conversion
      hello, I have been using AutoCAD LT to create .dxf files which are then imported into FH MX. However, I have noticed that the size of features...
    3. Proposed Name Space Geo::Data::* and Class::GeoData
      This is a request for comments and opinions concerning a set of modules I have recently developed. I propose to release the beginning of a large...
    4. XML to CSV Conversion
      Hi All, Does anyone have a perl script handy to show me how to convert an XML document to CSV format ? Thanks in advance.
    5. Mp3 Conversion, using PHP
      I'm wondering if there's any crazy dude out there that would like to join me in making a class for PHP to convert Mp3's to Mp3Pro. Even better...
  3. #2

    Default Re: 3D Geodata conversion

    Here's a link to the resource again (for some reason the one above does not direct properly):

    [url]http://board.flashkit.com/board/showthread.php?t=666832[/url]

    miquael Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139