Java Doc for Coverage.java in  » GIS » deegree » org » deegree » model » coverage » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » deegree » org.deegree.model.coverage 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.deegree.model.coverage.Coverage

All known Subclasses:   org.deegree.model.coverage.AbstractCoverage,
Coverage
public interface Coverage (Code)




Method Summary
 CoordinateSystemgetCoordinateReferenceSystem()
    
 String[]getDimensionNames()
     The names of each dimension in the coverage.
 PT_EnvelopegetEnvelope()
     The bounding box for the coverage domain in coordinates.
 String[]getMetadataNames()
     List of metadata keywords for a coverage.
 StringgetMetadataValue(String name)
     Retrieve the metadata value for a given metadata name.
Parameters:
  name - Metadata keyword for which to retrieve data.
 intgetNumSampleDimensions()
     The number of sample dimensions in the coverage.
 intgetNumSources()
     Number of grid coverages which the grid coverage was derived from.
 RenderableImagegetRenderableImage(int xAxis, int yAxis)
    
 SampleDimensiongetSampleDimension(int index)
     Retrieve sample dimension information for the coverage.
 CoveragegetSource(int sourceDataIndex)
     Returns the source data for a coverage.



Method Detail
getCoordinateReferenceSystem
CoordinateSystem getCoordinateReferenceSystem()(Code)



getDimensionNames
String[] getDimensionNames()(Code)
The names of each dimension in the coverage. Typically these names are x, y, z and t. The number of items in the sequence is the number of dimensions in the coverage. Grid coverages are typically 2D (x, y) while other coverages may be 3D (x, y, z) or 4D (x, y, z, t). The number of dimensions of the coverage is the number of entries in the list of dimension names. The names of each dimension in the coverage.



getEnvelope
PT_Envelope getEnvelope()(Code)
The bounding box for the coverage domain in coordinates. For grid coverages, the grid cells are centered on each grid coordinate. The envelope for a 2-D grid coverage includes the following corner positions.
 (Minimum row - 0.5, Minimum column - 0.5) for the minimum coordinates
 (Maximum row - 0.5, Maximum column - 0.5) for the maximum coordinates
 
If a grid coverage does not have any associated coordinate reference system, the minimum and maximum coordinate points for the envelope will be empty sequences. The bounding box for the coverage domain in coordinate system coordinates.



getMetadataNames
String[] getMetadataNames()(Code)
List of metadata keywords for a coverage. If no metadata is available, the sequence will be empty. the list of metadata keywords for a coverage.
See Also:   Coverage.getMetadataValue
See Also:   javax.media.jai.PropertySource.getPropertyNames



getMetadataValue
String getMetadataValue(String name) throws MetadataNameNotFoundException(Code)
Retrieve the metadata value for a given metadata name.
Parameters:
  name - Metadata keyword for which to retrieve data. the metadata value for a given metadata name.
throws:
  MetadataNameNotFoundException - if there is no value for the specified metadata name.
See Also:   Coverage.getMetadataNames
See Also:   javax.media.jai.PropertySource.getProperty



getNumSampleDimensions
int getNumSampleDimensions()(Code)
The number of sample dimensions in the coverage. For grid coverages, a sample dimension is a band. The number of sample dimensions in the coverage.



getNumSources
int getNumSources()(Code)
Number of grid coverages which the grid coverage was derived from. This implementation specification does not include interfaces for creating collections of coverages therefore this value will usually be one indicating an adapted grid coverage, or zero indicating a raw grid coverage. The number of grid coverages which the grid coverage was derived from.



getRenderableImage
RenderableImage getRenderableImage(int xAxis, int yAxis) throws UnsupportedOperationException, IndexOutOfBoundsException(Code)



getSampleDimension
SampleDimension getSampleDimension(int index) throws IndexOutOfBoundsException(Code)
Retrieve sample dimension information for the coverage. For a grid coverage a sample dimension is a band. The sample dimension information include such things as description, data type of the value (bit, byte, integer...), the no data values, minimum and maximum values and a color table if one is associated with the dimension. A coverage must have at least one sample dimension.
Parameters:
  index - Index for sample dimension to retrieve. Indices are numbered 0 to (-1). Sample dimension information for the coverage.
throws:
  IndexOutOfBoundsException - if index is out of bounds.



getSource
Coverage getSource(int sourceDataIndex) throws IndexOutOfBoundsException(Code)
Returns the source data for a coverage. This is intended to allow applications to establish what Coverages will be affected when others are updated, as well as to trace back to the "raw data".
Parameters:
  sourceDataIndex - Source coverage index. Indexes start at 0. The source data for a coverage.
throws:
  IndexOutOfBoundsException - if sourceDataIndex is out of bounds.
See Also:   Coverage.getNumSources
See Also:    "org.opengis.coverage.grid.GridCoverage#getSource"



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.