Advertisement
rodolpheg

Untitled

Feb 17th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. -- Enable PostGIS (as of 3.0 contains just geometry/geography)
  2. CREATE EXTENSION postgis;
  3. -- enable raster support (for 3+)
  4. CREATE EXTENSION postgis_raster;
  5. -- Enable Topology
  6. CREATE EXTENSION postgis_topology;
  7. -- Enable PostGIS Advanced 3D
  8. -- and other geoprocessing algorithms
  9. -- sfcgal not available with all distributions
  10. CREATE EXTENSION postgis_sfcgal;
  11. -- fuzzy matching needed for Tiger
  12. CREATE EXTENSION fuzzystrmatch;
  13. -- rule based standardizer
  14. CREATE EXTENSION address_standardizer;
  15. -- example rule data set
  16. CREATE EXTENSION address_standardizer_data_us;
  17. -- Enable US Tiger Geocoder
  18. CREATE EXTENSION postgis_tiger_geocoder;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement