how to insert polygon to PostGIS using JDBC











up vote
0
down vote

favorite












I am getting polygon as a set of points. (text or JSON representation)



I need to do the following:



1) insert polygon to PostGIS using JDBC



2) I am getting an object coordinate ( point ) and I need to check if this point inside polygons or not.



I saw different examples but I didn't find any which is using JDBC ( Java ).



Can you please share the simple java snippet or pointing me to already an existing example.



Note polygon in my case is not a cycle



Thanks
Oleg.










share|improve this question


























    up vote
    0
    down vote

    favorite












    I am getting polygon as a set of points. (text or JSON representation)



    I need to do the following:



    1) insert polygon to PostGIS using JDBC



    2) I am getting an object coordinate ( point ) and I need to check if this point inside polygons or not.



    I saw different examples but I didn't find any which is using JDBC ( Java ).



    Can you please share the simple java snippet or pointing me to already an existing example.



    Note polygon in my case is not a cycle



    Thanks
    Oleg.










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am getting polygon as a set of points. (text or JSON representation)



      I need to do the following:



      1) insert polygon to PostGIS using JDBC



      2) I am getting an object coordinate ( point ) and I need to check if this point inside polygons or not.



      I saw different examples but I didn't find any which is using JDBC ( Java ).



      Can you please share the simple java snippet or pointing me to already an existing example.



      Note polygon in my case is not a cycle



      Thanks
      Oleg.










      share|improve this question













      I am getting polygon as a set of points. (text or JSON representation)



      I need to do the following:



      1) insert polygon to PostGIS using JDBC



      2) I am getting an object coordinate ( point ) and I need to check if this point inside polygons or not.



      I saw different examples but I didn't find any which is using JDBC ( Java ).



      Can you please share the simple java snippet or pointing me to already an existing example.



      Note polygon in my case is not a cycle



      Thanks
      Oleg.







      java jdbc polygon postgis






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 at 16:40









      user2779840

      61




      61
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          1) You can use something like that



                  String url = "jdbc:postgresql://localhost:5432/test";
          try (java.sql.Connection conn = DriverManager.getConnection(url, "user", "password")) {
          Class.forName("org.postgresql.Driver");
          GeometryFactory geometryFactory = new GeometryFactory(new PrecisionModel(), 4326);
          PackedCoordinateSequenceFactory csFactory = new PackedCoordinateSequenceFactory();
          CoordinateSequence sequence = csFactory.create(5, 2);
          sequence.setOrdinate(0 /*first point*/, 0, 92.63671875);
          sequence.setOrdinate(0 /*first point*/, 1, 56.88500172043518);
          sequence.setOrdinate(1, 0, 101.66748046874999);
          sequence.setOrdinate(1, 1, 56.88500172043518);
          sequence.setOrdinate(2, 0, 101.66748046874999);
          sequence.setOrdinate(2, 1, 59.80063426102869);
          sequence.setOrdinate(3, 0, 92.63671875);
          sequence.setOrdinate(3, 1, 59.80063426102869);
          sequence.setOrdinate(4 /*closed point*/, 0, 92.63671875);
          sequence.setOrdinate(4 /*closed point*/, 1, 56.88500172043518);
          // pass an array of Coordinate or a CoordinateSequence
          Polygon geo = geometryFactory.createPolygon(sequence);
          // you can use it to check if this point inside polygons
          // or you can use just query, something like that SELECT * FROM table_name WHERE st_contains(geom, your_point)
          boolean isContains = geo.contains(geometryFactory.createPoint(new Coordinate(99.404296875,
          58.60261057364717)));
          WKBWriter writer = new WKBWriter();
          PreparedStatement preparedStatement =
          conn.prepareStatement("INSERT INTO table_name (geom) VALUES (ST_GeomFromWKB(?, 4326))");
          preparedStatement.setBytes(1, writer.write(geo));
          int rows = preparedStatement.executeUpdate();
          if (rows > 0) {
          System.out.println(" Successful insert! ");
          } else {
          System.out.println(" Failed insert!");
          }
          preparedStatement.close();
          } catch (Exception e) {
          e.printStackTrace();
          }
          dependencies for that (pom.xml, use repository http://repo.boundlessgeo.com/main/):

          `<dependencies>
          <dependency>
          <groupId>org.locationtech.jts</groupId>
          <artifactId>jts-core</artifactId>
          <version>1.16.0</version>
          </dependency>
          <dependency>
          <groupId>org.locationtech.jts</groupId>
          <artifactId>jts-modules</artifactId>
          <version>1.16.0</version>
          <type>pom</type>
          </dependency>
          <dependency>
          <groupId>org.geotools</groupId>
          <artifactId>gt-main</artifactId>
          <version>20.1</version>
          </dependency>
          <dependency>
          <groupId>org.geotools</groupId>
          <artifactId>gt-geojson</artifactId>
          <version>20.1</version>
          </dependency>
          <dependency>
          <groupId>org.geotools.jdbc</groupId>
          <artifactId>gt-jdbc-postgis</artifactId>
          <version>20.1</version>
          <scope>test</scope>
          </dependency>
          <dependency>
          <groupId>org.postgresql</groupId>
          <artifactId>postgresql</artifactId>
          <version>42.2.1</version>
          <scope>compile</scope>
          </dependency>
          </dependencies>`


          2) You can use jts for that (as you can see above) or you can use Postgis query like that



              SELECT * FROM table_name
          WHERE st_contains(geom, st_setsrid(st_makepoint(99.404296875, 58.60261057364717), 4326))





          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53397592%2fhow-to-insert-polygon-to-postgis-using-jdbc%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote













            1) You can use something like that



                    String url = "jdbc:postgresql://localhost:5432/test";
            try (java.sql.Connection conn = DriverManager.getConnection(url, "user", "password")) {
            Class.forName("org.postgresql.Driver");
            GeometryFactory geometryFactory = new GeometryFactory(new PrecisionModel(), 4326);
            PackedCoordinateSequenceFactory csFactory = new PackedCoordinateSequenceFactory();
            CoordinateSequence sequence = csFactory.create(5, 2);
            sequence.setOrdinate(0 /*first point*/, 0, 92.63671875);
            sequence.setOrdinate(0 /*first point*/, 1, 56.88500172043518);
            sequence.setOrdinate(1, 0, 101.66748046874999);
            sequence.setOrdinate(1, 1, 56.88500172043518);
            sequence.setOrdinate(2, 0, 101.66748046874999);
            sequence.setOrdinate(2, 1, 59.80063426102869);
            sequence.setOrdinate(3, 0, 92.63671875);
            sequence.setOrdinate(3, 1, 59.80063426102869);
            sequence.setOrdinate(4 /*closed point*/, 0, 92.63671875);
            sequence.setOrdinate(4 /*closed point*/, 1, 56.88500172043518);
            // pass an array of Coordinate or a CoordinateSequence
            Polygon geo = geometryFactory.createPolygon(sequence);
            // you can use it to check if this point inside polygons
            // or you can use just query, something like that SELECT * FROM table_name WHERE st_contains(geom, your_point)
            boolean isContains = geo.contains(geometryFactory.createPoint(new Coordinate(99.404296875,
            58.60261057364717)));
            WKBWriter writer = new WKBWriter();
            PreparedStatement preparedStatement =
            conn.prepareStatement("INSERT INTO table_name (geom) VALUES (ST_GeomFromWKB(?, 4326))");
            preparedStatement.setBytes(1, writer.write(geo));
            int rows = preparedStatement.executeUpdate();
            if (rows > 0) {
            System.out.println(" Successful insert! ");
            } else {
            System.out.println(" Failed insert!");
            }
            preparedStatement.close();
            } catch (Exception e) {
            e.printStackTrace();
            }
            dependencies for that (pom.xml, use repository http://repo.boundlessgeo.com/main/):

            `<dependencies>
            <dependency>
            <groupId>org.locationtech.jts</groupId>
            <artifactId>jts-core</artifactId>
            <version>1.16.0</version>
            </dependency>
            <dependency>
            <groupId>org.locationtech.jts</groupId>
            <artifactId>jts-modules</artifactId>
            <version>1.16.0</version>
            <type>pom</type>
            </dependency>
            <dependency>
            <groupId>org.geotools</groupId>
            <artifactId>gt-main</artifactId>
            <version>20.1</version>
            </dependency>
            <dependency>
            <groupId>org.geotools</groupId>
            <artifactId>gt-geojson</artifactId>
            <version>20.1</version>
            </dependency>
            <dependency>
            <groupId>org.geotools.jdbc</groupId>
            <artifactId>gt-jdbc-postgis</artifactId>
            <version>20.1</version>
            <scope>test</scope>
            </dependency>
            <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>42.2.1</version>
            <scope>compile</scope>
            </dependency>
            </dependencies>`


            2) You can use jts for that (as you can see above) or you can use Postgis query like that



                SELECT * FROM table_name
            WHERE st_contains(geom, st_setsrid(st_makepoint(99.404296875, 58.60261057364717), 4326))





            share|improve this answer

























              up vote
              1
              down vote













              1) You can use something like that



                      String url = "jdbc:postgresql://localhost:5432/test";
              try (java.sql.Connection conn = DriverManager.getConnection(url, "user", "password")) {
              Class.forName("org.postgresql.Driver");
              GeometryFactory geometryFactory = new GeometryFactory(new PrecisionModel(), 4326);
              PackedCoordinateSequenceFactory csFactory = new PackedCoordinateSequenceFactory();
              CoordinateSequence sequence = csFactory.create(5, 2);
              sequence.setOrdinate(0 /*first point*/, 0, 92.63671875);
              sequence.setOrdinate(0 /*first point*/, 1, 56.88500172043518);
              sequence.setOrdinate(1, 0, 101.66748046874999);
              sequence.setOrdinate(1, 1, 56.88500172043518);
              sequence.setOrdinate(2, 0, 101.66748046874999);
              sequence.setOrdinate(2, 1, 59.80063426102869);
              sequence.setOrdinate(3, 0, 92.63671875);
              sequence.setOrdinate(3, 1, 59.80063426102869);
              sequence.setOrdinate(4 /*closed point*/, 0, 92.63671875);
              sequence.setOrdinate(4 /*closed point*/, 1, 56.88500172043518);
              // pass an array of Coordinate or a CoordinateSequence
              Polygon geo = geometryFactory.createPolygon(sequence);
              // you can use it to check if this point inside polygons
              // or you can use just query, something like that SELECT * FROM table_name WHERE st_contains(geom, your_point)
              boolean isContains = geo.contains(geometryFactory.createPoint(new Coordinate(99.404296875,
              58.60261057364717)));
              WKBWriter writer = new WKBWriter();
              PreparedStatement preparedStatement =
              conn.prepareStatement("INSERT INTO table_name (geom) VALUES (ST_GeomFromWKB(?, 4326))");
              preparedStatement.setBytes(1, writer.write(geo));
              int rows = preparedStatement.executeUpdate();
              if (rows > 0) {
              System.out.println(" Successful insert! ");
              } else {
              System.out.println(" Failed insert!");
              }
              preparedStatement.close();
              } catch (Exception e) {
              e.printStackTrace();
              }
              dependencies for that (pom.xml, use repository http://repo.boundlessgeo.com/main/):

              `<dependencies>
              <dependency>
              <groupId>org.locationtech.jts</groupId>
              <artifactId>jts-core</artifactId>
              <version>1.16.0</version>
              </dependency>
              <dependency>
              <groupId>org.locationtech.jts</groupId>
              <artifactId>jts-modules</artifactId>
              <version>1.16.0</version>
              <type>pom</type>
              </dependency>
              <dependency>
              <groupId>org.geotools</groupId>
              <artifactId>gt-main</artifactId>
              <version>20.1</version>
              </dependency>
              <dependency>
              <groupId>org.geotools</groupId>
              <artifactId>gt-geojson</artifactId>
              <version>20.1</version>
              </dependency>
              <dependency>
              <groupId>org.geotools.jdbc</groupId>
              <artifactId>gt-jdbc-postgis</artifactId>
              <version>20.1</version>
              <scope>test</scope>
              </dependency>
              <dependency>
              <groupId>org.postgresql</groupId>
              <artifactId>postgresql</artifactId>
              <version>42.2.1</version>
              <scope>compile</scope>
              </dependency>
              </dependencies>`


              2) You can use jts for that (as you can see above) or you can use Postgis query like that



                  SELECT * FROM table_name
              WHERE st_contains(geom, st_setsrid(st_makepoint(99.404296875, 58.60261057364717), 4326))





              share|improve this answer























                up vote
                1
                down vote










                up vote
                1
                down vote









                1) You can use something like that



                        String url = "jdbc:postgresql://localhost:5432/test";
                try (java.sql.Connection conn = DriverManager.getConnection(url, "user", "password")) {
                Class.forName("org.postgresql.Driver");
                GeometryFactory geometryFactory = new GeometryFactory(new PrecisionModel(), 4326);
                PackedCoordinateSequenceFactory csFactory = new PackedCoordinateSequenceFactory();
                CoordinateSequence sequence = csFactory.create(5, 2);
                sequence.setOrdinate(0 /*first point*/, 0, 92.63671875);
                sequence.setOrdinate(0 /*first point*/, 1, 56.88500172043518);
                sequence.setOrdinate(1, 0, 101.66748046874999);
                sequence.setOrdinate(1, 1, 56.88500172043518);
                sequence.setOrdinate(2, 0, 101.66748046874999);
                sequence.setOrdinate(2, 1, 59.80063426102869);
                sequence.setOrdinate(3, 0, 92.63671875);
                sequence.setOrdinate(3, 1, 59.80063426102869);
                sequence.setOrdinate(4 /*closed point*/, 0, 92.63671875);
                sequence.setOrdinate(4 /*closed point*/, 1, 56.88500172043518);
                // pass an array of Coordinate or a CoordinateSequence
                Polygon geo = geometryFactory.createPolygon(sequence);
                // you can use it to check if this point inside polygons
                // or you can use just query, something like that SELECT * FROM table_name WHERE st_contains(geom, your_point)
                boolean isContains = geo.contains(geometryFactory.createPoint(new Coordinate(99.404296875,
                58.60261057364717)));
                WKBWriter writer = new WKBWriter();
                PreparedStatement preparedStatement =
                conn.prepareStatement("INSERT INTO table_name (geom) VALUES (ST_GeomFromWKB(?, 4326))");
                preparedStatement.setBytes(1, writer.write(geo));
                int rows = preparedStatement.executeUpdate();
                if (rows > 0) {
                System.out.println(" Successful insert! ");
                } else {
                System.out.println(" Failed insert!");
                }
                preparedStatement.close();
                } catch (Exception e) {
                e.printStackTrace();
                }
                dependencies for that (pom.xml, use repository http://repo.boundlessgeo.com/main/):

                `<dependencies>
                <dependency>
                <groupId>org.locationtech.jts</groupId>
                <artifactId>jts-core</artifactId>
                <version>1.16.0</version>
                </dependency>
                <dependency>
                <groupId>org.locationtech.jts</groupId>
                <artifactId>jts-modules</artifactId>
                <version>1.16.0</version>
                <type>pom</type>
                </dependency>
                <dependency>
                <groupId>org.geotools</groupId>
                <artifactId>gt-main</artifactId>
                <version>20.1</version>
                </dependency>
                <dependency>
                <groupId>org.geotools</groupId>
                <artifactId>gt-geojson</artifactId>
                <version>20.1</version>
                </dependency>
                <dependency>
                <groupId>org.geotools.jdbc</groupId>
                <artifactId>gt-jdbc-postgis</artifactId>
                <version>20.1</version>
                <scope>test</scope>
                </dependency>
                <dependency>
                <groupId>org.postgresql</groupId>
                <artifactId>postgresql</artifactId>
                <version>42.2.1</version>
                <scope>compile</scope>
                </dependency>
                </dependencies>`


                2) You can use jts for that (as you can see above) or you can use Postgis query like that



                    SELECT * FROM table_name
                WHERE st_contains(geom, st_setsrid(st_makepoint(99.404296875, 58.60261057364717), 4326))





                share|improve this answer












                1) You can use something like that



                        String url = "jdbc:postgresql://localhost:5432/test";
                try (java.sql.Connection conn = DriverManager.getConnection(url, "user", "password")) {
                Class.forName("org.postgresql.Driver");
                GeometryFactory geometryFactory = new GeometryFactory(new PrecisionModel(), 4326);
                PackedCoordinateSequenceFactory csFactory = new PackedCoordinateSequenceFactory();
                CoordinateSequence sequence = csFactory.create(5, 2);
                sequence.setOrdinate(0 /*first point*/, 0, 92.63671875);
                sequence.setOrdinate(0 /*first point*/, 1, 56.88500172043518);
                sequence.setOrdinate(1, 0, 101.66748046874999);
                sequence.setOrdinate(1, 1, 56.88500172043518);
                sequence.setOrdinate(2, 0, 101.66748046874999);
                sequence.setOrdinate(2, 1, 59.80063426102869);
                sequence.setOrdinate(3, 0, 92.63671875);
                sequence.setOrdinate(3, 1, 59.80063426102869);
                sequence.setOrdinate(4 /*closed point*/, 0, 92.63671875);
                sequence.setOrdinate(4 /*closed point*/, 1, 56.88500172043518);
                // pass an array of Coordinate or a CoordinateSequence
                Polygon geo = geometryFactory.createPolygon(sequence);
                // you can use it to check if this point inside polygons
                // or you can use just query, something like that SELECT * FROM table_name WHERE st_contains(geom, your_point)
                boolean isContains = geo.contains(geometryFactory.createPoint(new Coordinate(99.404296875,
                58.60261057364717)));
                WKBWriter writer = new WKBWriter();
                PreparedStatement preparedStatement =
                conn.prepareStatement("INSERT INTO table_name (geom) VALUES (ST_GeomFromWKB(?, 4326))");
                preparedStatement.setBytes(1, writer.write(geo));
                int rows = preparedStatement.executeUpdate();
                if (rows > 0) {
                System.out.println(" Successful insert! ");
                } else {
                System.out.println(" Failed insert!");
                }
                preparedStatement.close();
                } catch (Exception e) {
                e.printStackTrace();
                }
                dependencies for that (pom.xml, use repository http://repo.boundlessgeo.com/main/):

                `<dependencies>
                <dependency>
                <groupId>org.locationtech.jts</groupId>
                <artifactId>jts-core</artifactId>
                <version>1.16.0</version>
                </dependency>
                <dependency>
                <groupId>org.locationtech.jts</groupId>
                <artifactId>jts-modules</artifactId>
                <version>1.16.0</version>
                <type>pom</type>
                </dependency>
                <dependency>
                <groupId>org.geotools</groupId>
                <artifactId>gt-main</artifactId>
                <version>20.1</version>
                </dependency>
                <dependency>
                <groupId>org.geotools</groupId>
                <artifactId>gt-geojson</artifactId>
                <version>20.1</version>
                </dependency>
                <dependency>
                <groupId>org.geotools.jdbc</groupId>
                <artifactId>gt-jdbc-postgis</artifactId>
                <version>20.1</version>
                <scope>test</scope>
                </dependency>
                <dependency>
                <groupId>org.postgresql</groupId>
                <artifactId>postgresql</artifactId>
                <version>42.2.1</version>
                <scope>compile</scope>
                </dependency>
                </dependencies>`


                2) You can use jts for that (as you can see above) or you can use Postgis query like that



                    SELECT * FROM table_name
                WHERE st_contains(geom, st_setsrid(st_makepoint(99.404296875, 58.60261057364717), 4326))






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 22 at 2:49









                Vlad Kon

                111




                111






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53397592%2fhow-to-insert-polygon-to-postgis-using-jdbc%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    404 Error Contact Form 7 ajax form submitting

                    How to know if a Active Directory user can login interactively

                    TypeError: fit_transform() missing 1 required positional argument: 'X'