install.rst 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .. _geopkgoutput.install:
  2. Installing the GeoPackage Output Extension
  3. ------------------------------------------
  4. The GeoPackage Output extension is an official extension. Download the extension here - :download_extension:`geopkg-output`
  5. #. Download the extension for your version of GeoServer.
  6. .. warning:: Make sure to match the version of the extension to the version of GeoServer.
  7. #. Extract the archive and copy the contents into the GeoServer :file:`WEB-INF/lib` directory.
  8. #. Restart GeoServer.
  9. Verify Installation
  10. ^^^^^^^^^^^^^^^^^^^
  11. To verify that the extension was installed successfully:
  12. #. Request the `WFS 1.0.0 <http://localhost:8080/geoserver/ows?service=wfs&version=1.0.0&request=GetCapabilities>`__ GetCapabilities document from your server.
  13. #. Inside the resulting WFS 1.0.0 XML GetCapabilities document, find the ``WFS_Capabilities/Capability/GetFeature/ResultFormat`` section
  14. #. Verify that `geopkg`, `geopackage`, and `gpkg` are listed as a supported format
  15. .. code-block:: XML
  16. <GetFeature>
  17. <ResultFormat>
  18. <GML2/>
  19. <GML3/>
  20. <SHAPE-ZIP/>
  21. <CSV/>
  22. <JSON/>
  23. <KML/>
  24. <geopackage/>
  25. <geopkg/>
  26. <gpkg/>
  27. </ResultFormat>
  28. </GetFeature>
  29. .. note::
  30. You can also verify installation by looking for ``GeoPKG Output Extension`` on the server's `Module Status Page`.