From: Paul Ramsey Date: Fri, 12 Oct 2018 20:33:09 +0000 (+0000) Subject: Pass clean html parameter, fix a couple old references that should be X-Git-Tag: 3.0.0alpha1~361 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a4dba1c883c65794c9125cfd62ab0575312a156b;p=postgis Pass clean html parameter, fix a couple old references that should be git-svn-id: http://svn.osgeo.org/postgis/trunk@16884 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/Makefile.in b/doc/Makefile.in index 31fd778ef..ddb882cdf 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -58,6 +58,7 @@ XSLTPROC_COMMONOPTS= \ --param funcsynopsis.style kr \ --param admon.graphics 1 \ --param admon.textlabel 0 \ + --param make.clean.html 1 \ --param simplesect.in.toc 0 \ --param use.id.as.filename 1 \ --param chunk.quietly 1 \ diff --git a/doc/reference_output.xml b/doc/reference_output.xml index 09120e223..948cf23e3 100644 --- a/doc/reference_output.xml +++ b/doc/reference_output.xml @@ -272,9 +272,9 @@ The WKT spec does not include the SRID. To get the OGC WKT format use ST_AsText. - - WKT format does not maintain precision so to prevent floating truncation, use ST_AsBinary or ST_AsEWKB format for transport. - + + WKT format does not maintain precision so to prevent floating truncation, use ST_AsBinary or ST_AsEWKB format for transport. + ST_AsEWKT is the reverse of . Use to convert to a postgis geometry from ST_AsEWKT representation. @@ -954,9 +954,9 @@ SELECT (ST_AsLatLonText('POINT (-302.2342342 -792.32498)')); The WKT spec does not include the SRID. To get the SRID as part of the data, use the non-standard PostGIS - - WKT format does not maintain precision so to prevent floating truncation, use ST_AsBinary or ST_AsEWKB format for transport. - + + WKT format does not maintain precision so to prevent floating truncation, use ST_AsBinary or ST_AsEWKB format for transport. + ST_AsText is the reverse of . Use to convert to a postgis geometry from ST_AsText representation. diff --git a/doc/reference_processing.xml b/doc/reference_processing.xml index e48e7d8e9..795c6928f 100644 --- a/doc/reference_processing.xml +++ b/doc/reference_processing.xml @@ -68,8 +68,8 @@ from the input geometry. Negative radii: For polygons, a negative radius can be used, which will shrink the polygon rather than expanding it. Geography: For geography this is really a thin wrapper around the geometry implementation. It first determines the best SRID that fits the bounding box of the geography object (favoring UTM, Lambert Azimuthal Equal Area (LAEA) north/south pole, and falling back on mercator in worst case scenario) and then buffers in that planar spatial ref and retransforms back to WGS84 geography. - - For geography this may not behave as expected if object is sufficiently large that it falls between two UTM zones or crosses the dateline + + For geography this may not behave as expected if object is sufficiently large that it falls between two UTM zones or crosses the dateline Enhanced: 2.5.0 - ST_Buffer geometry support was enhanced to allow for side buffering specification side=both|left|right. Availability: 1.5 - ST_Buffer was enhanced to support different endcaps and join types. These are useful for example to convert road linestrings into polygon roads with flat or square edges instead of rounded edges. Thin wrapper for geography was added. - requires GEOS >= 3.2 to take advantage of advanced geometry functionality. @@ -2880,9 +2880,9 @@ MULTILINESTRING((76 175,90 161),(90 161,101 150),(126 125,126 156.25))) plotted in a 180 centric map This is only useful for data in long lat e.g. 4326 (WGS 84 long lat) - - Pre-1.3.4 bug prevented this from working for MULTIPOINT. 1.3.4+ works with MULTIPOINT as well. - + + Pre-1.3.4 bug prevented this from working for MULTIPOINT. 1.3.4+ works with MULTIPOINT as well. + &Z_support; Enhanced: 2.0.0 support for Polyhedral surfaces and TIN was introduced.