Package org.opengis.referencing

Examples of org.opengis.referencing.FactoryException


                     * an source dimension that do not appears in the list of source dimensions to
                     * kept.
                     *
                     * TODO: provide a more accurate error message.
                     */
                    throw new FactoryException(Errors.format(ErrorKeys.INSEPARABLE_TRANSFORM));
                }
                targetDimensions[i] = j;
            }
            transform = separateOutput(transform);
            targetDimensions = target;
View Full Code Here


            }
            // In an affine transform,  the last row is not supposed to have dependency
            // to any input dimension. But in this particuler case, our matrix has such
            // dependencies. TODO: is there anything we could do about that?
        }
        throw new FactoryException(Errors.format(ErrorKeys.INSEPARABLE_TRANSFORM));
    }
View Full Code Here

            ty = xNew.getElement(5, 0);

            i++;
     
            if (i > maxSteps) { //&& oldDxMatrix.getElement(0, 0) < dxMatrix.getElement(0, 0)){           
                throw new FactoryException("Calculation of transformation is divergating - try to set proper aproximate values");
            }
        } while ((!dxMatrix.equals(zero, tolerance)));

        xNew.transpose();
View Full Code Here

            if(result != null) {
                return result;
            }
        };
       
        throw new FactoryException("Could not locate grid file " + grid);
    }
View Full Code Here

        return c;
    }

    public Set<String> getAuthorityCodes(Class<? extends IdentifiedObject> type)
            throws FactoryException {
        throw new FactoryException(EXCEPTION_MESSAGE);
    }
View Full Code Here

        throw new FactoryException(EXCEPTION_MESSAGE);
    }

    public InternationalString getDescriptionText(String code) throws NoSuchAuthorityCodeException,
            FactoryException {
        throw new FactoryException(EXCEPTION_MESSAGE);
    }
View Full Code Here

        throw new FactoryException(EXCEPTION_MESSAGE);
    }

    public IdentifiedObject createObject(String code) throws NoSuchAuthorityCodeException,
            FactoryException {
        throw new FactoryException(EXCEPTION_MESSAGE);
    }
View Full Code Here

        return Citations.GEOTOOLS;
    }

    public CoordinateReferenceSystem createCoordinateReferenceSystem(String code)
            throws NoSuchAuthorityCodeException, FactoryException {
        throw new FactoryException(EXCEPTION_MESSAGE);
    }
View Full Code Here

        throw new FactoryException(EXCEPTION_MESSAGE);
    }

    public CompoundCRS createCompoundCRS(String code) throws NoSuchAuthorityCodeException,
            FactoryException {
        throw new FactoryException(EXCEPTION_MESSAGE);
    }
View Full Code Here

        throw new FactoryException(EXCEPTION_MESSAGE);
    }

    public DerivedCRS createDerivedCRS(String code) throws NoSuchAuthorityCodeException,
            FactoryException {
        throw new FactoryException(EXCEPTION_MESSAGE);
    }
View Full Code Here

TOP

Related Classes of org.opengis.referencing.FactoryException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.