Codota Logo
CRSStore.getAvailableCRSCodes
Code IndexAdd Codota to your IDE (free)

How to use
getAvailableCRSCodes
method
in
org.deegree.cs.persistence.CRSStore

Best Java code snippets using org.deegree.cs.persistence.CRSStore.getAvailableCRSCodes (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Connection c =
  • Codota IconDataSource dataSource;dataSource.getConnection()
  • Codota IconString url;DriverManager.getConnection(url)
  • Codota IconIdentityDatabaseUtil.getDBConnection()
  • Smart code suggestions by Codota
}
origin: deegree/deegree3

private List<CRSCodeType[]> getAllCRSCodeTypes() {
  List<CRSCodeType[]> crss = new ArrayList<CRSCodeType[]>();
  Collection<CRSStore> all = CRSManager.getAll();
  for ( CRSStore crsStore : all ) {
    crss.addAll( crsStore.getAvailableCRSCodes() );
  }
  return crss;
}
origin: deegree/deegree3

/**
 * This methods allows to get all available identifiers and not in the coordinatesystems themselves from all stores.
 * 
 * @return the identifiers of all configured CRSs.
 * @throws CRSConfigurationException
 *             if the implementation was confronted by an exception and could not deliver the requested crs. This
 *             exception should not be thrown if no CoordinateSystems were found, in the latter case an empty List (
 *             a list with size == 0 ) should be returned.
 */
public List<CRSCodeType[]> getAvailableCRSCodes()
            throws CRSConfigurationException {
  List<CRSCodeType[]> result = new ArrayList<CRSCodeType[]>();
  for ( CRSStore store : getAll() ) {
    result.addAll( store.getAvailableCRSCodes() );
  }
  return result;
}
org.deegree.cs.persistenceCRSStoregetAvailableCRSCodes

Javadoc

This method should be called if one is only interested in the available identifiers and not in the coordinatesystems themselves.

Popular methods of CRSStore

  • getAvailableCRSs
    This method should be called to see if the provider is able to create all defined crs's, thus verify
  • getCRSByCode
  • getDirectTransformation
    This method is should retrieve a transformation which transforms coordinates from the given source i
  • getPreferedTransformationType
  • init
    Called by the manager to indicate that this CRSStore instance is being registered.

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • getExternalFilesDir (Context)
  • getApplicationContext (Context)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • InputStreamReader (java.io)
    An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes
  • Stack (java.util)
    The Stack class represents a last-in-first-out (LIFO) stack of objects. It extends class Vector with
  • Timer (java.util)
    A facility for threads to schedule tasks for future execution in a background thread. Tasks may be s
  • TimerTask (java.util)
    A task that can be scheduled for one-time or repeated execution by a Timer.
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now