1 / 48

SGT Beans

SGT Beans Easy-To-Use Graphics Toolkit for Java Applications Donald W. Denbo UW/JISAO-NOAA/PMEL Introduction The Scientific Graphics Toolkit JavaBeans (SGT Beans) is a collection of Java classes that provide JavaBeans compatible access to SGT.

lotus
Télécharger la présentation

SGT Beans

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. SGT Beans Easy-To-Use Graphics Toolkit for Java Applications Donald W. Denbo UW/JISAO-NOAA/PMEL

  2. Introduction • The Scientific Graphics Toolkit JavaBeans (SGT Beans) is a collection of Java classes that provide JavaBeans compatible access to SGT. • JavaBeans makes SGT’s capabilities more accessible to developers. • SGT Beans reduces the learning curve needed to produce graphics applications. • SGT Beans can be used with several Java IDEs (NetBeans, JBuilder, etc.). NOAATech 2004, Silver Spring, MD

  3. History • SGT was developed to allow a NOAAServer user to interactively preview data and overlay plots. • SGT presently used with … • OceanShare, a collaborative tool for in situ data visualization • ncBrowse, a netCDF file browser • Climate Data Portal client, an application for browsing distributed data • SGT has had ~17,000 downloads from 5,800 unique sites in 70 countries. NOAATech 2004, Silver Spring, MD

  4. Other Users of SGT • Buoy Data, Morska Bioloska Postaja (Marine Biology Station) • Computational Physics Laboratory, University of Edinburgh • A Utility in JOELib, Computational Chemistry, University of Tübingen • “Coordinated, Interactive Data Visualization for Neutron Scattering Data”, Mikkelson et. al. • Dezo.org has created SGT applet plots. • “An Interactive Program for Determining Junction Depths in Diffused Silicon Devices”, Myers et. al. • Übungsunterlagen 2002, Wasserspeicher NOAATech 2004, Silver Spring, MD

  5. Outline • SGT Bean design goals • Demonstration of SGT Bean application. • Architecture • Page • DataModel • PanelModel • SGT Bean code examples • Time series. Plotting data from a netCDF file. • Add grid plot. Refactor netCDF reader. • Overlay vectors and add printing, PanelModel edit, etc. • What Next? NOAATech 2004, Silver Spring, MD

  6. Design Goals • Create easy-to-use JavaBeans from the SGT classes. • JavaBeans will enable beginner and intermediate developers a quick entry into SGT graphics. • SGT Beans will handle most events and provide tools to easily customize the appearance of the plot. NOAATech 2004, Silver Spring, MD

  7. SGT Beans Demonstration Start Demonstration NOAATech 2004, Silver Spring, MD

  8. 1 1 DataModel PanelModel Architecture The SGT Beans architecture consists of Page, DataModel, and PanelModel JavaBeans. The DataModel and PanelModel beans provide the “state” information necessary for Page to create a graphic display. Page NOAATech 2004, Silver Spring, MD

  9. Page JavaBean • Visual JavaBean. Page can be added to any swing container. • Page can have any number of Panels placed inside it. Each Panel provides an independent graphical display of data from the DataModel. • The location and size of the Panels are specified in the PanelModel. NOAATech 2004, Silver Spring, MD

  10. JPane 1 1 components 1..* Layer 2 Panel legendLayer labelLayer DataGroupLayer * Page Page NOAATech 2004, Silver Spring, MD

  11. PanelModel JavaBean • Non-visual JavaBean. • PanelModelmaintains: • location and size of Panels on Page • AxisGroups and their positions on a Panel • Legend position on a Panel • Titles and annotation positions on a Panel NOAATech 2004, Silver Spring, MD

  12. 1..* PanelHolder Label Legend * * 1..* DataGroup AxisHolder Margin 2 1 PanelModel PanelModel NOAATech 2004, Silver Spring, MD

  13. DataModel JavaBean • Non-visual JavaBean. • DataModel uses information from the PanelModel to specify the connection between data and Panel/AxisGroup. • Contains the SGTData and Attribute objects. NOAATech 2004, Silver Spring, MD

  14. 1..* SGTData DataHolder Attribute 1 1 1 PanelHolder 1 1 DataGroup 1..* Legend * DataModel DataModel NOAATech 2004, Silver Spring, MD

  15. SGT Beans Code Examples • Example 1: Time Series • Read time series from netCDF file into SimpleLine object. • Create graph using Page, DataModel, and PanelModel. • Load PanelModel from SBExample1.xml. • Example 2: Add Grid Plot • Read grid from netCDF file into SimpleGrid object. • Load PanelModel from SBExample2.xml. • Example 3: Overlay Vectors and Add Interactivity • Read vector from netCDF file into SGTVector object. • Load PanelModel from SBExample3.xml. • Add color map Legend. • Add printing, class browsing, zoom reset, PanelModel edit. NOAATech 2004, Silver Spring, MD

  16. Example 1: Time Series SBExample1.xml

  17. SBExample1 class NOAATech 2004, Silver Spring, MD

  18. Constuctor NOAATech 2004, Silver Spring, MD

  19. createGraphic() NOAATech 2004, Silver Spring, MD

  20. createGraphic() (cont) NOAATech 2004, Silver Spring, MD

  21. NcSimpleReader1 NOAATech 2004, Silver Spring, MD

  22. getTimeSeries() implementation NOAATech 2004, Silver Spring, MD

  23. Set shape and read Arrays NOAATech 2004, Silver Spring, MD

  24. Extract variable and axis values NOAATech 2004, Silver Spring, MD

  25. Parse time units. NOAATech 2004, Silver Spring, MD

  26. Parse time offset, create GeoDateArray NOAATech 2004, Silver Spring, MD

  27. Create SimpleLine and return NOAATech 2004, Silver Spring, MD

  28. Example 2: Add Grid Plot NOAATech 2004, Silver Spring, MD SBExample2.xml

  29. SBExample2 modifications NOAATech 2004, Silver Spring, MD

  30. Add Grid to Page NOAATech 2004, Silver Spring, MD

  31. Add createGridAttribute() NOAATech 2004, Silver Spring, MD

  32. NcSimpleReader2 - Add getGrid() NOAATech 2004, Silver Spring, MD

  33. Get shape and x & y axis data NOAATech 2004, Silver Spring, MD

  34. Adjust shape and get data grid NOAATech 2004, Silver Spring, MD

  35. Create SimpleGrid and return NOAATech 2004, Silver Spring, MD

  36. NOAATech 2004, Silver Spring, MD

  37. Example 3: Overlay Vectors and Add Interactivity NOAATech 2004, Silver Spring, MD SBExample3.xml

  38. SBExample3 modifications NOAATech 2004, Silver Spring, MD

  39. Add Grid Legend NOAATech 2004, Silver Spring, MD

  40. Add Printing NOAATech 2004, Silver Spring, MD

  41. Reset Zoom and Open JClassTree NOAATech 2004, Silver Spring, MD

  42. Edit Printer Layout and PanelModel NOAATech 2004, Silver Spring, MD

  43. NcSimpleReader3 - Add getVector() NOAATech 2004, Silver Spring, MD

  44. Modify getGeoDateArray NOAATech 2004, Silver Spring, MD

  45. NOAATech 2004, Silver Spring, MD

  46. What next? • Add LayoutManager support to position Panels when Page is resized. This requires creating a graphical wizard to set SpringLayout properties. • Add Annotation object support. Annotations include line, oval, point, text, and rectangle objects. • Enhance IDE compatibility with popular tools. • Continue fixing bugs, as they are found, and adding new useful features. NOAATech 2004, Silver Spring, MD

  47. References • SGT Beans • “Plug and Play Scientific Graphics with SGT”, NOAAResearch WebShop 2003, Longmont, CO • SGT home page • ncBrowse • “ncBrowse: A Graphical netCDF/OPeNDAP Browser”, 11th ESIP Technical Meeting - OPeNDAP Session, Boulder, CO • ncBrowse home page • OceanShare • “Fisheries Oceanography Collaboration Software”, 18th AMS International Conference on IIPS, Orlando, FL • Collaboration home page • Climate Data Portal • Climate Data Portal home page NOAATech 2004, Silver Spring, MD

More Related