Changes between Version 17 and Version 18 of FdoPostGISNotes
- Timestamp:
- 06/26/09 08:25:23 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FdoPostGISNotes
v17 v18 1 1 = FDO PostGIS Provider Notes = 2 2 3 This provider is a "work in progress", and this page is used to track relevant items during development, and will eventually turn into a usage notes page as the provider matures.3 This provider is now integrated into the main FDO release process. 4 4 5 5 If you are using the PostGIS provider, please be aware of these limitations: … … 12 12 If you run into problems, ask on the fdo-users mailing list and, if you thing you have a bug, follow the instructions on the [SubmitTicket Ticket Submission] page: 13 13 14 == Who's to blame?==14 == Authors / Contributors == 15 15 16 (Jason thinks this should be '''thank''') 16 Mateusz Loskot was the original author of this provider, working under contract to Refractions Research and the City of Nanaimo. 17 17 18 * [http://mateusz.loskot.net/ Mateusz Loskot] - if you need direct contact, I'm the author of OSGeo FDO Provider for PostGIS. 19 20 == Prerequisites == 21 22 This provider is compiled against FDO 3.2.2, which means that it requires !MapGuide Open Source 1.2. It should also work with Autodesk !MapGuide Enterprise 2008, and AutoCAD Map 3D 2008, but has not been thoroughly tested. 23 24 Current testing is being done against PostgreSQL 8.2 and PostGIS 1.3.1. It should work with previous versions, as we are using older-style SQL functions. However, you will require a copy of the 8.2 DLLs to use this provider. 25 26 This provider is currently only compatible with Windows. If you would like to help out with creating a Linux build, please let us know. 18 Bruno Scott of GeoMap GIS 27 19 28 20 == Download == 29 21 30 The current build of the provider (Changeset r3317 with the patch from #118 applied) is availablehere:22 Since version 3.3.2, the current build of the provider is now provided as part of the standard FDO distribution, which can be found here: 31 23 32 http:// www.jasonbirch.com/fdopostgis/fdopostgis_323_alpha_3317a.zip24 http://fdo.osgeo.org/content/downloads 33 25 34 There is also unofficial beta builds for Fdo 3.2 , 3.3 and 3.4 26 Or you can visit our download site directly: 27 28 http://download.osgeo.org/fdo/ 29 30 There may also be interim unofficial beta builds available at the maintainer's website: 35 31 36 32 http://www.geomapgis.com/web/geomap-group/fdo/index.html 37 33 38 == Installation ==34 == Installation (Windows) == 39 35 40 * Copy the three DLL files into your fdo/bin directory41 * Add the following to your providers.xml file :36 * Copy the DLLs into your fdo/bin directory 37 * Add the following to your providers.xml file, using the correct version number for your release: 42 38 43 39 {{{ 44 40 45 41 <FeatureProvider> 46 <Name>OSGeo.PostGIS.3. 2</Name>42 <Name>OSGeo.PostGIS.3.4</Name> 47 43 <DisplayName>OSGeo FDO Provider for PostGIS</DisplayName> 48 44 <Description>FDO Provider for PostGIS</Description> 49 45 <IsManaged>False</IsManaged> 50 <Version>3. 2.0.0</Version>51 <FeatureDataObjectsVersion>3. 2.0.0</FeatureDataObjectsVersion>46 <Version>3.4.0.0</Version> 47 <FeatureDataObjectsVersion>3.4.0.0</FeatureDataObjectsVersion> 52 48 <LibraryPath>.\PostGISProvider.dll</LibraryPath> 53 49 </FeatureProvider> … … 55 51 }}} 56 52 57 * Ensure that your computer has a version of the 8.2.4Postgresql/bin directory at the beginning of the SYSTEM part of the PATH environment variable, especially for server installations like !MapGuide. Alternately, determine which PostgreSQL DLLs this provider requires using depends.exe, and copy them into the fdo/bin directory.53 * Ensure that your computer the Postgresql/bin directory at the beginning of the SYSTEM part of the PATH environment variable, especially for server installations like !MapGuide. Alternately, determine which PostgreSQL DLLs this provider requires using depends.exe, and copy them into the fdo/bin directory. 58 54 * Reboot your computer 59 55 … … 75 71 This is the PostgreSQL schema the data is stored under. By default, all tables are stored under the "public" schema. However, this practice is not recommended as it makes postgis dump/restore procedures messy and difficult. 76 72 77 78 73 == Open Tickets == 79 74