Metadata-Version: 1.1
Name: fgdb2postgis
Version: 0.1.2
Summary: File geodatabase to postgis convertor
Home-page: https://github.com/cartologic/fgdb2postgis
Author: George Ioannou
Author-email: gmioannou@cartologic.com
License: MIT
Description: =============================
        fgdb2postgis
        =============================
        
        Python library providing functionality for converting file esri/geodatabase to postgresql/postgis
        The tool is solving the problem with geodatabase's subtypes, domains and relationships.
        It is not focusing to provide options for GDAL/OGR in this initial release but it will in future releases.
        
        Note that this library requires GDAL/OGR tools and ESRI ArcGIS to be installed in the system.
        
        Installation
        ------------
        This tool should be installed only on windows systems because of ArcGIS (Arcpy)
        
        Install required packages::
        
            pip install numpy
            pip psycopg2
            pip pyyaml
            pip install git+https://git@github.com/JamesRamm/archook.git
        
        Install fgdb2postgis::
        
            pip install fgdb2postgis
        
        Note that it does not automatically install GDAL/OGR tools or ESRI ArcGIS in your system.
        You can install GDAL/OGR by using [OSGeo4W](https://trac.osgeo.org/osgeo4w/).
        
        Usage
        -----
        Create a YAML file mapping file geodatabase's feature datasets, feature classes and tables to postgresql's schemas
        
        Naming convention::
        
            filegdb: sample.gdb
               yaml: sample.gdb.yaml
        
        Note that Yaml file should live in the same folder with the file geodatabase.
        
        Yaml file example::
        
            Schemas:
              - Administrative
              - Epidemiology
              - Radioactivity
              - Seismic
            FeatureDatasets:
              Epidemiology:
              - Epidemiology
              Radioactivity:
              - Radioactivity
              Seismic:
              - Seismic
            FeatureClasses:
              Administrative:
                - sectors
                - governorates
                - sub_sectors
            Tables:
              Epidemiology:
              - EpidemiologyTS
              - EpidemiologyTST
              Radioactivity:
              - RadiationTS
              - RadiationTST
              Seismic:
              - EarthquakeTS
              - SeismicTST
        
        Command line options::
        
            fgdb2postgis -h
            fgdb2postgis -f filegdb
                         -p postgis
                         --host=host
                         --port=port
                         --user=user
                         --password=password
        
        Restrictions
        ------------
        
        * DO NOT apply this tool in a production postgresql database.
        * The postgresql database should exists and be EMPTY!
        * The tool will OVERWRITE any tables having the same name with tables in filegdb.
        
Keywords: fgdb2postgis
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
