Changes between Version 17 and Version 18 of FdoPostGISNotes


Ignore:
Timestamp:
Jun 26, 2009, 8:25:23 AM (15 years ago)
Author:
jbirch
Comment:

Bringing into line with current development state

Legend:

Unmodified
Added
Removed
Modified
  • FdoPostGISNotes

    v17 v18  
    11= FDO PostGIS Provider Notes =
    22
    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.
     3This provider is now integrated into the main FDO release process.
    44
    55If you are using the PostGIS provider, please be aware of these limitations:
     
    1212If 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:
    1313
    14 == Who's to blame? ==
     14== Authors / Contributors ==
    1515
    16 (Jason thinks this should be '''thank''')
     16Mateusz Loskot was the original author of this provider, working under contract to Refractions Research and the City of Nanaimo.
    1717
    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.
     18Bruno Scott of GeoMap GIS
    2719
    2820== Download ==
    2921
    30 The current build of the provider (Changeset r3317 with the patch from #118 applied) is available here:
     22Since 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:
    3123
    32 http://www.jasonbirch.com/fdopostgis/fdopostgis_323_alpha_3317a.zip
     24http://fdo.osgeo.org/content/downloads
    3325
    34 There is also unofficial beta builds for Fdo 3.2 , 3.3 and 3.4
     26Or you can visit our download site directly:
     27
     28http://download.osgeo.org/fdo/
     29
     30There may also be interim unofficial beta builds available at the maintainer's website:
    3531
    3632http://www.geomapgis.com/web/geomap-group/fdo/index.html
    3733
    38 == Installation ==
     34== Installation (Windows) ==
    3935
    40  * Copy the three DLL files into your fdo/bin directory
    41  * 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:
    4238
    4339{{{
    4440
    4541  <FeatureProvider>
    46     <Name>OSGeo.PostGIS.3.2</Name>
     42    <Name>OSGeo.PostGIS.3.4</Name>
    4743    <DisplayName>OSGeo FDO Provider for PostGIS</DisplayName>
    4844    <Description>FDO Provider for PostGIS</Description>
    4945    <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>
    5248    <LibraryPath>.\PostGISProvider.dll</LibraryPath>
    5349  </FeatureProvider>
     
    5551}}}
    5652
    57  * Ensure that your computer has a version of the 8.2.4 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.
     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.
    5854 * Reboot your computer
    5955
     
    7571  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.
    7672
    77 
    7873== Open Tickets ==
    7974