![]() |
|
|||||||
| WWJ Release Announcements WWJava release announcements thread, no other topics please. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
WWJ Consultant
Join Date: Jun 2005
Location: Saint-Paul de Vence, Alpes Maritimes, France
Posts: 3,412
|
NASA World Wind Java SDK alpha 5 - 0.5.0 is now available.
Download WWJ SDK 0.5 (Zip 14.4M). Check the new demo page for web start examples, applets and user applications. From the release README.txt: Change Summary for 0.4 to 0.5:
![]() Edit: Some screenshots and details here. Last edited by patmurris; 05-03-2008 at 07:20 AM. |
|
|
|
|
|
#2 |
|
Member
Join Date: Jun 2007
Posts: 98
|
Thanks guys!!!! Very nice start to the weekend!
Is the California NAIP imagery available? I haven't been able to find any images for that layer yet. Looks like you guys have been busy... Thanks for releasing before Java-One conference! tve |
|
|
|
|
|
#3 |
|
WWJ Consultant
Join Date: Jun 2005
Location: Saint-Paul de Vence, Alpes Maritimes, France
Posts: 3,412
|
NAIP California should be working, but the server seems to be down just now - it comes from berkeley.edu wms.
|
|
|
|
|
|
#4 |
|
Senior Member
Join Date: May 2007
Location: Milan, Genoa (Italy)
Posts: 112
|
I'd like to take the risk and upgrade now, just in time for the J1 demo... :-)
I've just two problems compiling this method: setLookAtLatLon(), getLookAtLatitude() and getLookAtLongitude() seems to have been moved. Code:
private void setCenterPosition (final Coordinates centerPosition,
final double zoom,
final Angle heading,
final Angle pitch)
{
logger.info("setCenterPosition(" + centerPosition + ", " + zoom + ")");
this.centerPosition = centerPosition;
final Position position = toPosition(centerPosition);
// final Position viewPosition = new Position(position.getLatitude(), position.getLongitude(), height);
logger.fine(">>>> position: " + position);
final Globe globe = wwjGLCanvas.getModel().getGlobe();
final OrbitView view = (OrbitView)wwjGLCanvas.getView();
if (false)
{
// view.setLatLonAltitude(viewPosition);
view.setLookAtLatLon(position.getLatLon());
}
else
{
view.stopStateIterators();
view.applyStateIterator(FlyToOrbitViewStateIterator.createPanToIterator(globe,
new LatLon(view.getLookAtLatitude(), view.getLookAtLongitude()),
position.getLatLon(),
view.getHeading(), heading,
view.getPitch(), pitch,
view.getZoom(), zoom,
2000));
}
}
__________________
-- Fabrizio Giudici, Ph.D. - Java Architect, Project Manager Tidalwave s.a.s. - "We make Java work. Everywhere." weblogs.java.net/blog/fabriziogiudici - www.tidalwave.it/blog Fabrizio.Giudici@tidalwave.it - mobile: +39 348.150.6941 |
|
|
|
|
|
#5 |
|
WWJ Consultant
Join Date: Jun 2005
Location: Saint-Paul de Vence, Alpes Maritimes, France
Posts: 3,412
|
The view has evolved quite a bit, sorry for the trouble.
There is a number of classes that control the view in one way or another. Have a look at examples.applet.WWJApplet for various iterators or examples.ViewLookAround for some direct view setting code - in a first person approach (zoom = 0) though. The SAR application (in applications) has some rather sophisticated view controls in AnalysisPanel.updateView(). Hope this helps you catch up in time ![]() Edit: some view discussion here too. Last edited by patmurris; 05-03-2008 at 10:27 AM. |
|
|
|
|
|
#6 |
|
Senior Member
Join Date: May 2007
Location: Milan, Genoa (Italy)
Posts: 112
|
Dave Collins solved my problems :-) (see also my blog). Can you please tell me which are the versions of JOGL and GlueGen used this time? Remember that we NetBeans RCP programmers always need the version of libraries, also because of the versioning of modules.
__________________
-- Fabrizio Giudici, Ph.D. - Java Architect, Project Manager Tidalwave s.a.s. - "We make Java work. Everywhere." weblogs.java.net/blog/fabriziogiudici - www.tidalwave.it/blog Fabrizio.Giudici@tidalwave.it - mobile: +39 348.150.6941 |
|
|
|
|
|
#7 |
|
WWJ Consultant
Join Date: Jun 2005
Location: Saint-Paul de Vence, Alpes Maritimes, France
Posts: 3,412
|
I have no idea which versions of JOGL or GluGen we are using. We generally use the latest available that gets downloaded when you run the ant target jogl.setup - see Build.xml in the project root. Maybe you can figure the version by following the download link to Sun's site?
|
|
|
|
|
|
#8 |
|
Junior Member (Java Lover)
Join Date: Feb 2008
Posts: 172
|
Some classes are missing, I found PlaceNameRenderer ,PlaceName,GlobeAnnotationInfo.java dosn't exist any more?
Last edited by ayman; 05-04-2008 at 12:05 AM. |
|
|
|
|
|
#9 |
|
Junior Member
Join Date: Jan 2008
Posts: 2
|
I also needed to update to the latest jogl to get it to run.
There are also changes in config/worldwind.properites so that has to get updated as well if you've strayed from the default. There's definitely enough new stuff to keep me entertained for while. Thanks! |
|
|
|
|
|
#10 |
|
Junior Member
Join Date: Feb 2008
Posts: 19
|
Hello,
Thank you guys for this release. But i've got a problem here with opengl : Code:
Exception in thread "AWT-EventQueue-0" java.lang.RuntimeException: java.lang.IllegalArgumentException: argument type mismatch
at com.sun.opengl.impl.JAWT_DrawingSurfaceInfo.newPlatformInfo(JAWT_DrawingSurfaceInfo.java:86)
at com.sun.opengl.impl.JAWT_DrawingSurfaceInfo.platformInfo(JAWT_DrawingSurfaceInfo.java:52)
at com.sun.opengl.impl.windows.WindowsOnscreenGLDrawable.lockSurface(WindowsOnscreenGLDrawable.java:189)
at com.sun.opengl.impl.windows.WindowsOnscreenGLContext.makeCurrentImpl(WindowsOnscreenGLContext.java:57)
at com.sun.opengl.impl.GLContextImpl.makeCurrent(GLContextImpl.java:134)
Thanks, Ouar |
|
|
|
![]() |
| Tags |
| None |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| WWJ SDK Alpha 4.1 - 0.4.1 available | tag | WWJ Release Announcements | 56 | 11-14-2009 01:51 PM |
| WWJ SDK Alpha 4 - 0.4.0 available | patmurris | WWJ Release Announcements | 9 | 07-19-2009 02:50 AM |
| WWJ SDK to abstract JOGL to make a map server | mikequentel | Applications | 0 | 05-01-2008 07:32 PM |
| WWJ SDK Alpha 3 - 0.3.0 available | patmurris | WWJ Release Announcements | 35 | 12-03-2007 09:56 PM |
| 1.3.2 alpha 2 released | Jessi | Developers' Corner | 28 | 02-02-2006 08:27 PM |