Verifies that the software allows correct definition of a user-defined projected CRS.
Test method: | Create user-defined projected CRS. |
---|---|
Test data: | GIGS_user_3207_ProjectedCRS.txt
|
Tested API: | CRSFactory.createProjectedCRS(Map, GeographicCRS, Conversion, CartesianCS) andCSFactory.createCartesianCS(Map, CoordinateSystemAxis, CoordinateSystemAxis) . |
Expected result: | The geoscience software should accept the test data. The properties of the created objects will * be compared with the properties given to the factory method. |
Usage example
in order to specify their factories and run the tests in a JUnit framework, implementers can define a subclass in their own test suite as in the example below:public class MyTest extends Test3207 {
public MyTest() {
super(new MyFactories());
}
}
- Since:
- 1.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final CoordinateOperationAuthorityFactory
Factory to use for buildingConversion
instances, ornull
if none.protected final CoordinateOperationFactory
Factory to use for buildingConversion
instances, ornull
if none.protected final CRSFactory
Factory to use for buildingProjectedCRS
instances, ornull
if none.protected final CSFactory
The factory to use for creating coordinate system instances.protected final DatumAuthorityFactory
protected final DatumFactory
Factory to use for buildingGeodeticDatum
instances, ornull
if none.protected final MathTransformFactory
The factory to use for fetching operation methods, ornull
if none.Fields inherited from class Series3000
isFactoryPreservingUserValues, properties
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the projected CRS instance to be tested.void
Tests “GIGS projCRS A1” projected CRS creation from the factory.void
Tests “GIGS projCRS A1-2” projected CRS creation from the factory.void
Tests “GIGS projCRS A1-3” projected CRS creation from the factory.void
Tests “GIGS projCRS A1-4” projected CRS creation from the factory.void
Tests “GIGS projCRS A1-5” projected CRS creation from the factory.void
Tests “GIGS projCRS A1-6” projected CRS creation from the factory.void
Tests “GIGS projCRS A2” projected CRS creation from the factory.void
Tests “GIGS projCRS A21” projected CRS creation from the factory.void
Tests “GIGS projCRS B2” projected CRS creation from the factory.void
Tests “GIGS projCRS B22” projected CRS creation from the factory.void
Tests “GIGS projCRS C4” projected CRS creation from the factory.void
Tests “GIGS projCRS D5” projected CRS creation from the factory.void
Tests “GIGS projCRS E6” projected CRS creation from the factory.void
Tests “GIGS projCRS F7” projected CRS creation from the factory.void
Tests “GIGS projCRS F8” projected CRS creation from the factory.void
Tests “GIGS projCRS F9” projected CRS creation from the factory.void
Tests “GIGS projCRS G10” projected CRS creation from the factory.void
Tests “GIGS projCRS G11” projected CRS creation from the factory.void
Tests “GIGS projCRS G12” projected CRS creation from the factory.void
Tests “GIGS projCRS G13” projected CRS creation from the factory.void
Tests “GIGS projCRS G14” projected CRS creation from the factory.void
Tests “GIGS projCRS G15” projected CRS creation from the factory.void
Tests “GIGS projCRS G16” projected CRS creation from the factory.void
Tests “GIGS projCRS G17” projected CRS creation from the factory.void
Tests “GIGS projCRS G18” projected CRS creation from the factory.void
Tests “GIGS projCRS H19” projected CRS creation from the factory.void
Tests “GIGS projCRS A23” projected CRS creation from the factory.void
Tests “GIGS projCRS AA1” projected CRS creation from the factory.void
Tests “GIGS projCRS BB2” projected CRS creation from the factory.void
Tests “GIGS projCRS CC4” projected CRS creation from the factory.void
Tests “GIGS projCRS EE6” projected CRS creation from the factory.void
Tests “GIGS projCRS FF8” projected CRS creation from the factory.void
Tests “GIGS projCRS HH19” projected CRS creation from the factory.void
Tests “GIGS projCRS Y24” projected CRS creation from the factory.void
Tests “GIGS projCRS M25” projected CRS creation from the factory.void
Tests “GIGS projCRS K26” projected CRS creation from the factory.void
Tests “GIGS projCRS L27” projected CRS creation from the factory.void
Tests “GIGS projCRS J28” projected CRS creation from the factory.void
Tests “GIGS projCRS Z28” projected CRS creation from the factory.
-
Field Details
-
copFactory
Factory to use for buildingConversion
instances, ornull
if none. This is the factory used by thegetIdentifiedObject()
method. -
mtFactory
The factory to use for fetching operation methods, ornull
if none. -
crsFactory
Factory to use for buildingProjectedCRS
instances, ornull
if none. -
csFactory
The factory to use for creating coordinate system instances. -
datumFactory
Factory to use for buildingGeodeticDatum
instances, ornull
if none. May also be used for buildingEllipsoid
andPrimeMeridian
components. -
datumAuthorityFactory
Factory to use for buildingGeodeticDatum
andPrimeMeridian
components, ornull
if none. This is used only for tests with EPSG codes for datum components. -
copAuthorityFactory
Factory to use for buildingConversion
instances, ornull
if none. This is the factory used by thegetIdentifiedObject()
method.
-
-
Constructor Details
-
Test3207
Creates a new test using the given factories. The factories needed by this class areCRSFactory
,CSFactory
,DatumFactory
,CoordinateOperationFactory
,MathTransformFactory
and optionallyCoordinateOperationAuthorityFactory
withDatumAuthorityFactory
. If a requested factory isnull
, then the tests which depend on it will be skipped.Authority factory usage
The authority factory is used only for some test cases where the components are fetched by EPSG codes instead of being built by user. Those test cases are identified by the "definition source" line in Javadoc.- Parameters:
factories
- factories for creating the instances to test.
-
-
Method Details
-
getIdentifiedObject
Returns the projected CRS instance to be tested. When this method is invoked for the first time, it creates the projected CRS to test by invoking the corresponding method fromCRSFactory
with the currentproperties
map, base CRS, conversion, and Cartesian coordinate system in the arguments. The created object is then cached and returned in all subsequent invocations of this method.- Specified by:
getIdentifiedObject
in classSeries3000<ProjectedCRS>
- Returns:
- the projected CRS instance to test.
- Throws:
FactoryException
- if an error occurred while creating the projected CRS instance.
-
GIGS_62001
Tests “GIGS projCRS A1” projected CRS creation from the factory.- GIGS projected CRS code: 62001
- GIGS projectedCRS name: GIGS projCRS A1
- EPSG equivalence: 32631 – WGS 84 / UTM zone 31N
- GIGS base CRS code: 64003
- GIGS conversion code: 65001
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62002
Tests “GIGS projCRS A1-2” projected CRS creation from the factory.- GIGS projected CRS code: 62002
- GIGS projectedCRS name: GIGS projCRS A1-2
- GIGS base CRS code: 64003
- GIGS conversion code: 65001
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4500
Coordinate system axes Name Abbreviation Orientation Unit Northing N north metre Easting E east metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62003
Tests “GIGS projCRS A1-3” projected CRS creation from the factory.- GIGS projected CRS code: 62003
- GIGS projectedCRS name: GIGS projCRS A1-3
- GIGS base CRS code: 64003
- GIGS conversion code: 65001
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62004
Tests “GIGS projCRS A1-4” projected CRS creation from the factory.- GIGS projected CRS code: 62004
- GIGS projectedCRS name: GIGS projCRS A1-4
- GIGS base CRS code: 64003
- GIGS conversion code: 65001
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4532
Coordinate system axes Name Abbreviation Orientation Unit Northing Y north metre Easting X east metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62005
Tests “GIGS projCRS A1-5” projected CRS creation from the factory.- GIGS projected CRS code: 62005
- GIGS projectedCRS name: GIGS projCRS A1-5
- GIGS base CRS code: 64003
- GIGS conversion code: 65001
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4498
Coordinate system axes Name Abbreviation Orientation Unit Easting Y east metre Northing X north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62006
Tests “GIGS projCRS A1-6” projected CRS creation from the factory.- GIGS projected CRS code: 62006
- GIGS projectedCRS name: GIGS projCRS A1-6
- GIGS base CRS code: 64003
- GIGS conversion code: 65001
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4530
Coordinate system axes Name Abbreviation Orientation Unit Northing X north metre Easting Y east metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62007
Tests “GIGS projCRS A2” projected CRS creation from the factory.- GIGS projected CRS code: 62007
- GIGS projectedCRS name: GIGS projCRS A2
- GIGS base CRS code: 64003
- GIGS conversion code: 65002
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62008
Tests “GIGS projCRS A21” projected CRS creation from the factory.- GIGS projected CRS code: 62008
- GIGS projectedCRS name: GIGS projCRS A21
- GIGS base CRS code: 64003
- GIGS conversion code: 65021
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62027
Tests “GIGS projCRS A23” projected CRS creation from the factory.- GIGS projected CRS code: 62027
- GIGS projectedCRS name: GIGS projCRS A23
- GIGS base CRS code: 64003
- GIGS conversion code: 65023
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4497
Coordinate system axes Name Abbreviation Orientation Unit Easting X east US survey foot Northing Y north US survey foot - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62028
Tests “GIGS projCRS AA1” projected CRS creation from the factory.- GIGS projected CRS code: 62028
- GIGS projectedCRS name: GIGS projCRS AA1
- EPSG equivalence: 32631 – WGS 84 / UTM zone 31N
- GIGS base CRS code: 64326
- EPSG conversion code: 16031
- Conversion definition source: Fetched from EPSG dataset (build with
CoordinateOperationAuthorityFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62009
Tests “GIGS projCRS B2” projected CRS creation from the factory.- GIGS projected CRS code: 62009
- GIGS projectedCRS name: GIGS projCRS B2
- EPSG equivalence: 27700 – OSGB36 / British National Grid
- GIGS base CRS code: 64005
- GIGS conversion code: 65002
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62010
Tests “GIGS projCRS B22” projected CRS creation from the factory.- GIGS projected CRS code: 62010
- GIGS projectedCRS name: GIGS projCRS B22
- GIGS base CRS code: 64005
- GIGS conversion code: 65022
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62029
Tests “GIGS projCRS BB2” projected CRS creation from the factory.- GIGS projected CRS code: 62029
- GIGS projectedCRS name: GIGS projCRS BB2
- EPSG equivalence: 27700 – OSGB36 / British National Grid
- GIGS base CRS code: 64277
- EPSG conversion code: 19916
- Conversion definition source: Fetched from EPSG dataset (build with
CoordinateOperationAuthorityFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62011
Tests “GIGS projCRS C4” projected CRS creation from the factory.- GIGS projected CRS code: 62011
- GIGS projectedCRS name: GIGS projCRS C4
- EPSG equivalence: 28992 – Amersfoort / RD New
- GIGS base CRS code: 64006
- GIGS conversion code: 65004
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62030
Tests “GIGS projCRS CC4” projected CRS creation from the factory.- GIGS projected CRS code: 62030
- GIGS projectedCRS name: GIGS projCRS CC4
- EPSG equivalence: 28992 – Amersfoort / RD New
- GIGS base CRS code: 64289
- EPSG conversion code: 19914
- Conversion definition source: Fetched from EPSG dataset (build with
CoordinateOperationAuthorityFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62012
Tests “GIGS projCRS D5” projected CRS creation from the factory.- GIGS projected CRS code: 62012
- GIGS projectedCRS name: GIGS projCRS D5
- EPSG equivalence: 5330 – Batavia (Jakarta) / NEIEZ
- GIGS base CRS code: 64007
- GIGS conversion code: 65005
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62013
Tests “GIGS projCRS E6” projected CRS creation from the factory.- GIGS projected CRS code: 62013
- GIGS projectedCRS name: GIGS projCRS E6
- EPSG equivalence: 31370 – Belge 1972 / Belgian Lambert 72
- GIGS base CRS code: 64008
- GIGS conversion code: 65006
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62031
Tests “GIGS projCRS EE6” projected CRS creation from the factory.- GIGS projected CRS code: 62031
- GIGS projectedCRS name: GIGS projCRS EE6
- EPSG equivalence: 31370 – Belge 1972 / Belgian Lambert 72
- GIGS base CRS code: 64313
- EPSG conversion code: 19961
- Conversion definition source: Fetched from EPSG dataset (build with
CoordinateOperationAuthorityFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62014
Tests “GIGS projCRS F7” projected CRS creation from the factory.- GIGS projected CRS code: 62014
- GIGS projectedCRS name: GIGS projCRS F7
- EPSG equivalence: 28354 – GDA94 / MGA zone 54
- GIGS base CRS code: 64009
- GIGS conversion code: 65007
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62015
Tests “GIGS projCRS F8” projected CRS creation from the factory.- GIGS projected CRS code: 62015
- GIGS projectedCRS name: GIGS projCRS F8
- EPSG equivalence: 28355 – GDA94 / MGA zone 55
- GIGS base CRS code: 64009
- GIGS conversion code: 65008
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62016
Tests “GIGS projCRS F9” projected CRS creation from the factory.- GIGS projected CRS code: 62016
- GIGS projectedCRS name: GIGS projCRS F9
- EPSG equivalence: 3577 – GDA94 / Australian Albers
- GIGS base CRS code: 64009
- GIGS conversion code: 65009
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62032
Tests “GIGS projCRS FF8” projected CRS creation from the factory.- GIGS projected CRS code: 62032
- GIGS projectedCRS name: GIGS projCRS FF8
- EPSG equivalence: 28354 – GDA94 / MGA zone 54
- GIGS base CRS code: 64283
- EPSG conversion code: 17354
- Conversion definition source: Fetched from EPSG dataset (build with
CoordinateOperationAuthorityFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62017
Tests “GIGS projCRS G10” projected CRS creation from the factory.- GIGS projected CRS code: 62017
- GIGS projectedCRS name: GIGS projCRS G10
- EPSG equivalence: 2049 – Hartebeesthoek94 / Lo21
- GIGS base CRS code: 64010
- GIGS conversion code: 65010
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 6503
Coordinate system axes Name Abbreviation Orientation Unit Westing Y west metre Southing X south metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62018
Tests “GIGS projCRS G11” projected CRS creation from the factory.- GIGS projected CRS code: 62018
- GIGS projectedCRS name: GIGS projCRS G11
- EPSG equivalence: 22175 – POSGAR 98 / Argentina 5
- GIGS base CRS code: 64010
- GIGS conversion code: 65011
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4530
Coordinate system axes Name Abbreviation Orientation Unit Northing X north metre Easting Y east metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62019
Tests “GIGS projCRS G12” projected CRS creation from the factory.- GIGS projected CRS code: 62019
- GIGS projectedCRS name: GIGS projCRS G12
- EPSG equivalence: 5880 – SIRGAS2000 / Brazil Polyconic
- GIGS base CRS code: 64010
- GIGS conversion code: 65012
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62020
Tests “GIGS projCRS G13” projected CRS creation from the factory.- GIGS projected CRS code: 62020
- GIGS projectedCRS name: GIGS projCRS G13
- GIGS base CRS code: 64010
- GIGS conversion code: 65013
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62021
Tests “GIGS projCRS G14” projected CRS creation from the factory.- GIGS projected CRS code: 62021
- GIGS projectedCRS name: GIGS projCRS G14
- EPSG equivalence: 3376 – GDM2000 / East Malaysia BRSO
- GIGS base CRS code: 64010
- GIGS conversion code: 65014
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62022
Tests “GIGS projCRS G15” projected CRS creation from the factory.- GIGS projected CRS code: 62022
- GIGS projectedCRS name: GIGS projCRS G15
- EPSG equivalence: 3377 – GDM2000 / Johor Grid
- GIGS base CRS code: 64010
- GIGS conversion code: 65015
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62023
Tests “GIGS projCRS G16” projected CRS creation from the factory.- GIGS projected CRS code: 62023
- GIGS projectedCRS name: GIGS projCRS G16
- EPSG equivalence: 3035 – ETRS89-extended / LAEA Europe
- GIGS base CRS code: 64010
- GIGS conversion code: 65016
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4532
Coordinate system axes Name Abbreviation Orientation Unit Northing Y north metre Easting X east metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62024
Tests “GIGS projCRS G17” projected CRS creation from the factory.- GIGS projected CRS code: 62024
- GIGS projectedCRS name: GIGS projCRS G17
- EPSG equivalence: 2921 – NAD83(HARN) / Utah North (ft)
- GIGS base CRS code: 64010
- GIGS conversion code: 65017
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4495
Coordinate system axes Name Abbreviation Orientation Unit Easting X east foot Northing Y north foot - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62025
Tests “GIGS projCRS G18” projected CRS creation from the factory.- GIGS projected CRS code: 62025
- GIGS projectedCRS name: GIGS projCRS G18
- EPSG equivalence: 3568 – NAD83(HARN) / Utah North (ftUS)
- GIGS base CRS code: 64010
- GIGS conversion code: 65018
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4497
Coordinate system axes Name Abbreviation Orientation Unit Easting X east US survey foot Northing Y north US survey foot - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62026
Tests “GIGS projCRS H19” projected CRS creation from the factory.- GIGS projected CRS code: 62026
- GIGS projectedCRS name: GIGS projCRS H19
- EPSG equivalence: 27572 – NTF (Paris) / Lambert zone II
- GIGS base CRS code: 64011
- GIGS conversion code: 65019
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62033
Tests “GIGS projCRS HH19” projected CRS creation from the factory.- GIGS projected CRS code: 62033
- GIGS projectedCRS name: GIGS projCRS HH19
- EPSG equivalence: 27572 – NTF (Paris) / Lambert zone II
- GIGS base CRS code: 64807
- EPSG conversion code: 18082
- Conversion definition source: Fetched from EPSG dataset (build with
CoordinateOperationAuthorityFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62038
Tests “GIGS projCRS J28” projected CRS creation from the factory.- GIGS projected CRS code: 62038
- GIGS projectedCRS name: GIGS projCRS J28
- EPSG equivalence: 26708 – NAD27 / UTM zone 8N
- GIGS base CRS code: 64012
- GIGS conversion code: 65028
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62036
Tests “GIGS projCRS K26” projected CRS creation from the factory.- GIGS projected CRS code: 62036
- GIGS projectedCRS name: GIGS projCRS K26
- EPSG equivalence: 23700 – HD72 / EOV
- GIGS base CRS code: 64015
- GIGS conversion code: 65026
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4498
Coordinate system axes Name Abbreviation Orientation Unit Easting Y east metre Northing X north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62037
Tests “GIGS projCRS L27” projected CRS creation from the factory.- GIGS projected CRS code: 62037
- GIGS projectedCRS name: GIGS projCRS L27
- EPSG equivalence: 3001 – Batavia / NEIEZ
- GIGS base CRS code: 64014
- GIGS conversion code: 65027
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62035
Tests “GIGS projCRS M25” projected CRS creation from the factory.- GIGS projected CRS code: 62035
- GIGS projectedCRS name: GIGS projCRS M25
- GIGS base CRS code: 64003
- GIGS conversion code: 65025
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4499
Coordinate system axes Name Abbreviation Orientation Unit Easting X east metre Northing Y north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62034
Tests “GIGS projCRS Y24” projected CRS creation from the factory.- GIGS projected CRS code: 62034
- GIGS projectedCRS name: GIGS projCRS Y24
- EPSG equivalence: 3388 – Pulkovo 1942 / Caspian Sea Mercator
- GIGS base CRS code: 64003
- GIGS conversion code: 65024
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4534
Coordinate system axes Name Abbreviation Orientation Unit Northing none north metre Easting none east metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-
GIGS_62039
Tests “GIGS projCRS Z28” projected CRS creation from the factory.- GIGS projected CRS code: 62039
- GIGS projectedCRS name: GIGS projCRS Z28
- EPSG equivalence: 26908 – NAD83 / UTM zone 8N
- GIGS base CRS code: 64012
- GIGS conversion code: 65028
- Conversion definition source: Described by user (build with
CoordinateOperationFactory
) - EPSG coordinate system code: 4400
Coordinate system axes Name Abbreviation Orientation Unit Easting E east metre Northing N north metre - Throws:
FactoryException
- if an error occurred while creating the projected CRS from the properties.
-