diff --git a/src/main/java/no/nibio/vips/gis/GISUtil.java b/src/main/java/no/nibio/vips/gis/GISUtil.java
index 41e901cd2f3c07cc83736062f9d8a8a6ecb939df..201af6d24ac4bac34dd3652d5315437ae7710060 100644
--- a/src/main/java/no/nibio/vips/gis/GISUtil.java
+++ b/src/main/java/no/nibio/vips/gis/GISUtil.java
@@ -42,7 +42,7 @@ import org.wololo.jts2geojson.GeoJSONWriter;
 
 /**
  * Handy tools for GIS operations
- * @copyright 2017 <a href="http://www.nibio.no/">NIBIO</a>
+ * @copyright 2023 <a href="http://www.nibio.no/">NIBIO</a>
  * @author Tor-Einar Skog <tor-einar.skog@nibio.no>
  */
 public class GISUtil {
@@ -142,7 +142,7 @@ public class GISUtil {
     }
     
     /**
-     * Convert one JTS Geometry object into a GeoJSON feature
+     * Convert one JTS Geometry object into a complete GeoJSON String
      * @param geometry
      * @param properties
      * @return 
@@ -154,14 +154,28 @@ public class GISUtil {
             return "";
         }
         List<Feature> features = new ArrayList<>();
+        features.add(this.getGeoJSONFeatureFromGeometry(geometry, properties));
         GeoJSONWriter writer = new GeoJSONWriter();
-       
-        features.add(new Feature(writer.write(geometry), properties));
-        
         FeatureCollection json = writer.write(features);
         return json.toString();
     }
     
+    /**
+     * Convert one JTS Geometry object into a GeoJSON Feature
+     * @param geometry
+     * @param properties
+     * @return 
+     */
+    public Feature getGeoJSONFeatureFromGeometry(Geometry geometry,Map<String, Object> properties)
+    {
+        if(geometry == null)
+        {
+            return null;
+        }
+        GeoJSONWriter writer = new GeoJSONWriter();
+        return new Feature(writer.write(geometry), properties);
+    }
+    
     /**
      * If you have WGS84 coordinates, th
      * @param coordinate in WGS84 system
@@ -172,6 +186,12 @@ public class GISUtil {
         GeometryFactory gf = new GeometryFactory(new PrecisionModel(), 4326);
         return gf.createPoint(coordinate);
     }
+    
+    public Point createPointWGS84(Double longitude, Double latitude)
+    {
+        Coordinate coordinate = new Coordinate(longitude, latitude);
+        return this.createPointWGS84(coordinate);
+    }
 
     /**
      * Calculate distance between two points, courtesy of <a href="http://www.movable-type.co.uk/scripts/latlong.html">this page</a>. Explanation: