[postgis-tickets] [SCM] postgis.net branch website updated. clarity-final-6-g79e3aa4

git at osgeo.org git at osgeo.org
Sat May 13 22:56:45 PDT 2023


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "postgis.net".

The branch, website has been updated
       via  79e3aa493520c1c8959fe560cd00db0e983732b1 (commit)
       via  8e4460abbed75177f13b793afb3fc6677a6f9fee (commit)
      from  1c4f6ff4acf24b3dd52afc6e8fb59d9485d71ee0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 79e3aa493520c1c8959fe560cd00db0e983732b1
Author: Regina Obe <lr at pcorp.us>
Date:   Sun May 14 01:55:48 2023 -0400

    Getting Started Cleanup
    
     - Fix links on macos
     - get rid of edb page as
       its already covered in the macos
       and windows pages

diff --git a/content/documentation/getting_started/install_edb.md b/content/documentation/getting_started/install_edb.md
deleted file mode 100644
index c4c938d..0000000
--- a/content/documentation/getting_started/install_edb.md
+++ /dev/null
@@ -1,11 +0,0 @@
----
-title: Installing using EnterpriseDB
-date: 2022-02-01
-weight: 100
-geekdocHidden: true
-geekdocHiddenTocTree: false
----
-
-EnterpriseDB [builds PostgresSQL packages](http://www.enterprisedb.com/products-services-training/pgdownload) for Linux, Windows and MacOS. 
-
-* Note that the MacOSX PostGIS package and EDB Windows PostGIS package have different maintainers, so offerings are not equivalent. Both versions generally have latest minor version of PostGIS, but versions of libraries used may be different, other PostGIS related extensions like pgRouting, `postgis_sfcgal` are packaged with the Windows but not the MacOS version.
diff --git a/content/documentation/getting_started/install_macos.md b/content/documentation/getting_started/install_macos.md
index 198a9f5..75006f0 100644
--- a/content/documentation/getting_started/install_macos.md
+++ b/content/documentation/getting_started/install_macos.md
@@ -6,9 +6,9 @@ geekdocHidden: true
 geekdocHiddenTocTree: false
 ---
 
-* A popular distribution particularly for newbies is [Postgres.app](http://postgresapp.com/). It includes generally latest version of PostgreSQL, PostGIS, and PLV8. Great for development and testing. Do not mix with other installations.
+* A popular distribution particularly for newbies is [Postgres.app](https://postgresapp.com/). It includes generally latest version of PostgreSQL and PostGIS. Great for development and testing. Do not mix with other installations.
 
-* [Homebrew](http://brew.sh) users can just run "brew install postgis" and tends to be a favorite for more advanced users since there are brew scripts for most of the popular PostgreSQL extensions, not always present in other Mac distributions.
+* [Homebrew](https://brew.sh) users can just run "brew install postgis" and tends to be a favorite for more advanced users since there are brew scripts for most of the popular PostgreSQL extensions, not always present in other Mac distributions.
 
-* The [EnterpriseDB OSX PostgreSQL](http://www.enterprisedb.com/products-services-training/pgdownload) combination from EnterpriseDB includes generally latest stable minor version of PostGIS.
+* The [EnterpriseDB OSX PostgreSQL](https://www.enterprisedb.com/postgres-tutorials/installation-postgresql-mac-os) combination from EnterpriseDB includes generally latest stable minor version of PostGIS.
 

commit 8e4460abbed75177f13b793afb3fc6677a6f9fee
Author: Regina Obe <lr at pcorp.us>
Date:   Sun May 14 01:48:17 2023 -0400

    Some cleanup of windows section

diff --git a/content/documentation/getting_started/install_windows/enabling_postgis.md b/content/documentation/getting_started/install_windows/enabling_postgis.md
index bc06ec9..beec90c 100644
--- a/content/documentation/getting_started/install_windows/enabling_postgis.md
+++ b/content/documentation/getting_started/install_windows/enabling_postgis.md
@@ -1,29 +1,34 @@
 ---
 title: Enabling PostGIS
 date: 2022-02-01
-weight: 30
+weight: 20
 geekdocHidden: true
 geekdocHiddenTocTree: false
 ---
 
 PostGIS and other extensions are optional extensions that must be enabled in EVERY database you want to use them in.
+All the below extensions are included as part of the PostGIS windows bundle
 
 ```postgres
 CREATE EXTENSION postgis;
--- in PostGIS 3, postgis_raster is a separate extension from postgis
--- so do this in addition if you are experimenting PostGIS 3+
+-- enabling raster support
 CREATE EXTENSION postgis_raster;
 
+-- enabling advanced 3d support
 CREATE EXTENSION postgis_sfcgal;
+-- enabling SQL/MM Net Topology
+CREATE EXTENSION postgis_topology;
+
+-- using US census data for geocoding and standardization
 CREATE EXTENSION address_standardizer;
 CREATE EXTENSION fuzzystrmatch;
-CREATE EXTENSION postgis_topology;
 CREATE EXTENSION postgis_tiger_geocoder;
 ```
 
 ### PostGIS related extensions
 
-These extensions are part of the PostGIS bundle, but you can also download the latest separately.
+These extensions are part of the PostGIS bundle, but you can also download
+the latest separately in [Unreleased Versions](../unreleased_versions).
 
 If you want to use pgrouting, download the respective one for your PostgreSQL/
 
@@ -31,7 +36,7 @@ If you want to use pgrouting, download the respective one for your PostgreSQL/
 CREATE EXTENSION pgrouting;
 ```
 
-For loading OpenStreetMap data (OSM) into pgrouting format, you can use osm2po or [osm2pgrouting][10]. Windows binaries for osm2pgrouting can be found alongside pgrouting for each version. Refer to instructions in the zip. Make sure to use the 32-bit with 32-bit PostgreSQL install and 64-bit for PostgreSQL 64-bit install (copying the .dlls into your respective PostgreSQL/bin folder).
+For loading OpenStreetMap data (OSM) into pgrouting format, you can use [osm2po](https://osm2po.de/) or [osm2pgrouting][10]. Windows binaries for osm2pgrouting can be found alongside pgrouting for each version. Refer to instructions in the zip.
 
 Additional extensions included in the PostGIS Bundle, that are not part of PostGIS project
 are the following. These ones you'll find in the `extras` folder if you want to use not yet released versions.
@@ -65,4 +70,4 @@ See the [Getting Started]({{< ref "/documentation/getting_started/" >}}) section
 [13]: https://winnie.postgis.net/download/windows/pg96/buildbot/
 [14]: https://winnie.postgis.net/download/windows/pg10/buildbot/
 [15]: https://winnie.postgis.net/download/windows/pg11/buildbot/
-[16]: https://winnie.postgis.net/download/windows/pg12/buildbot/
\ No newline at end of file
+[16]: https://winnie.postgis.net/download/windows/pg12/buildbot/
diff --git a/content/documentation/getting_started/install_windows/unreleased_versions.md b/content/documentation/getting_started/install_windows/unreleased_versions.md
index 6cf01c7..09470c0 100644
--- a/content/documentation/getting_started/install_windows/unreleased_versions.md
+++ b/content/documentation/getting_started/install_windows/unreleased_versions.md
@@ -1,7 +1,7 @@
 ---
 title: Unreleased Versions
 date: 2022-02-01
-weight: 20
+weight: 30
 geekdocHidden: true
 geekdocHiddenTocTree: false
 ---
@@ -9,9 +9,9 @@ geekdocHiddenTocTree: false
 If you are more adventurous, and risk-seeking you can partake in our experimental windows
 binaries of PostGIS built automatically by Winnie whenever there is a change in any of the PostGIS Stable or development branches. These are especially useful for testing out new features or if you are badly in need of a bug fix that has not been released yet.
 
-If you don't want to risk messing up an existing windows install or aren't allowed to write to the registry, we'd suggest using the companion [PostgreSQL EDB binaries-only][8] binaries which don't require installation. Setup is detailed in [Starting PostgreSQL in windows without install](https://www.postgresonline.com/journal/archives/172-Starting-PostgreSQL-in-windows-without-install.html).
+If you don't want to risk messing up an existing windows install or aren't allowed to write to the registry, we'd suggest using the companion [PostgreSQL EDB binaries-only](https://www.enterprisedb.com/download-postgresql-binaries) binaries which don't require installation. Setup is detailed in [Starting PostgreSQL in windows without install](https://www.postgresonline.com/journal/archives/172-Starting-PostgreSQL-in-windows-without-install.html).
 
-## Windows: Winnie Bot PostGIS and pgRouting Experimental Builds
+## Windows: Winnie Bot PostGIS and related extensions Experimental Builds
 
 * [for PostgreSQL 32-bit/64-bit][1]
 

-----------------------------------------------------------------------

Summary of changes:
 content/documentation/getting_started/install_edb.md  | 11 -----------
 .../documentation/getting_started/install_macos.md    |  6 +++---
 .../install_windows/enabling_postgis.md               | 19 ++++++++++++-------
 .../install_windows/unreleased_versions.md            |  6 +++---
 4 files changed, 18 insertions(+), 24 deletions(-)
 delete mode 100644 content/documentation/getting_started/install_edb.md


hooks/post-receive
-- 
postgis.net


More information about the postgis-tickets mailing list