Skip to content

Commit 2abb771

Browse files
committed
remove derivedprojectedcrs mention from projinfo.rst
1 parent 81aaaf0 commit 2abb771

1 file changed

Lines changed: 0 additions & 39 deletions

File tree

docs/source/apps/projinfo.rst

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -607,45 +607,6 @@ Output:
607607
LENGTHUNIT["metre",1]],
608608
ID["HOBU","MY_CRS"]]
609609

610-
A ``DerivedProjectedCRS`` — a CRS derived from an existing ``ProjectedCRS`` base — must be
611-
registered directly in the ``derived_projected_crs`` table. The base CRS must already exist
612-
in the ``projected_crs`` table (e.g. an EPSG entry), and a deriving conversion must be
613-
registered separately. For example, to register a net projection derived from EPSG:32631
614-
(WGS 84 / UTM zone 31N):
615-
616-
.. code-block:: sql
617-
618-
-- Register the deriving conversion (e.g. an affine net unfold)
619-
INSERT INTO conversion_table VALUES(
620-
'HOBU','MY_NET_CONV','My net conversion',NULL,
621-
'EPSG','9624', -- Affine parametric transformation
622-
NULL,NULL,NULL,NULL,NULL, -- param1
623-
NULL,NULL,NULL,NULL,NULL, -- param2
624-
NULL,NULL,NULL,NULL,NULL, -- param3
625-
NULL,NULL,NULL,NULL,NULL, -- param4
626-
NULL,NULL,NULL,NULL,NULL, -- param5
627-
NULL,NULL,NULL,NULL,NULL, -- param6
628-
NULL,NULL,NULL,NULL,NULL, -- param7
629-
0);
630-
INSERT INTO usage VALUES('HOBU','USAGE_MY_NET_CONV','conversion',
631-
'HOBU','MY_NET_CONV','PROJ','EXTENT_UNKNOWN','PROJ','SCOPE_UNKNOWN');
632-
633-
-- Register the DerivedProjectedCRS
634-
INSERT INTO derived_projected_crs VALUES(
635-
'HOBU','MY_NET_CRS','My net CRS',NULL,
636-
'EPSG','4400', -- coordinate system (Cartesian 2D, metres)
637-
'EPSG','32631', -- base ProjectedCRS
638-
'HOBU','MY_NET_CONV',
639-
NULL,0);
640-
INSERT INTO usage VALUES('HOBU','USAGE_MY_NET_CRS','derived_projected_crs',
641-
'HOBU','MY_NET_CRS','PROJ','EXTENT_UNKNOWN','PROJ','SCOPE_UNKNOWN');
642-
643-
.. note::
644-
645-
The ``derived_projected_crs`` table was introduced in PROJ 9.9. A ``DERIVEDPROJCRS``
646-
WKT string placed in the ``text_definition`` column of the ``projected_crs`` table
647-
will produce a directed error pointing to the correct table.
648-
649610
5. Get the WKT representation of EPSG:25832 in the WKT1:GDAL output format and on a single line
650611

651612
.. code-block:: console

0 commit comments

Comments
 (0)