Package org.opengis.temporal

Examples of org.opengis.temporal.TemporalGeometricPrimitive


                // Getting slice extent
                //
                // //
//                VerticalExtent ve = sd.getVerticalExtent();
//                CoordinateReferenceSystem crs = sd.getCoordinateReferenceSystem();
                TemporalGeometricPrimitive time = sd.getTemporalExtent();
               
                BoundingBox boundingBox = sd.getHorizontalExtent();
//                String referenceID = "";
//                if (crs instanceof CompoundCRS){
//                    List<CoordinateReferenceSystem> list = ((CompoundCRS) crs).getCoordinateReferenceSystems();
View Full Code Here


                    // Has Time?
                    //
                    // //
                    if (!temporalSubset.isEmpty()) {
                        for (TemporalGeometricPrimitive time : temporalSubset) {
                            TemporalGeometricPrimitive sdTime = sd.getTemporalExtent();
                            if (isTimeAccepted(time, sdTime)) {
                                addCoverage(response, verticalSubset, sd, needTransformation, emptyRequest,
                                        useJAI, imageReadParam, sampleDimensions);
                            }
                        }
View Full Code Here

    /**
     * Test of distance method, of class DefaultTemporalGeometricPrimitive.
     */
    @Test
    public void testDistance() {
        TemporalGeometricPrimitive other;

        //calcul Distance with instant objects
        cal.set(2000, 0, 1);
        Position position = new DefaultPosition(cal.getTime());
        other = new DefaultInstant(position);
View Full Code Here

TOP

Related Classes of org.opengis.temporal.TemporalGeometricPrimitive

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.