]> saetta.ns0.it Git - libgtkgis/commitdiff
Removed tests/sample from repository.
authorAndrea Zagli <azagli@libero.it>
Mon, 13 Jul 2009 16:13:08 +0000 (18:13 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 13 Jul 2009 16:13:08 +0000 (18:13 +0200)
Implemented management for raster (position is wrong because must find
width and height in space coordinates).
Fixed some bugs.

31 files changed:
.gitignore
data/gtkgis.dtd
src/Makefile.am
src/geometryraster.c
src/geometryraster.h
src/gtkgis.c
src/layer.c
src/layer.h
src/layersource.c
src/layersource.h
src/layersourceraster.c [new file with mode: 0644]
src/layersourceraster.h [new file with mode: 0644]
src/layersourceshp.c
src/layersourceshp.h
src/libgtkgis.h
tests/samples/airports.dbf [deleted file]
tests/samples/airports.prj [deleted file]
tests/samples/airports.shp [deleted file]
tests/samples/airports.shx [deleted file]
tests/samples/alaska.dbf [deleted file]
tests/samples/alaska.prj [deleted file]
tests/samples/alaska.shp [deleted file]
tests/samples/alaska.shx [deleted file]
tests/samples/railroads.dbf [deleted file]
tests/samples/railroads.prj [deleted file]
tests/samples/railroads.shp [deleted file]
tests/samples/railroads.shx [deleted file]
tests/samples/rivers.dbf [deleted file]
tests/samples/rivers.prj [deleted file]
tests/samples/rivers.shp [deleted file]
tests/samples/rivers.shx [deleted file]

index 0cdb086e9986d3ff077ed7597fb51a447073649c..ed7b3418e5b37c772bac0a8ce44f9a05ec3928ef 100644 (file)
@@ -9,6 +9,7 @@ Makefile.in
 .tm_project2.cache
 aclocal.m4
 autom4te.cache/
+change_for_git
 config.guess
 config.h
 config.log
@@ -29,6 +30,7 @@ stamp-h1
 tests/.deps
 tests/.libs
 tests/from_xml
+tests/samples
 
 # temporarily
 TODO.tasks
index 8e4301e458660a6eb5aa77afa16a0c6875f75300..7150f4cb129a46a4ed9933a4141bb56874e2e103 100644 (file)
@@ -4,21 +4,26 @@
 
 <!ELEMENT layer (source)>
 <!ATTLIST layer
-  name CDATA #REQUIRED
-  visible (y | n) "y"
+       name CDATA #REQUIRED
+       visible (y | n) "y"
 >
 
-<!ELEMENT source (shape | postgis)>
+<!ELEMENT source (shape | postgis | raster)>
 
 <!ELEMENT shape>
 <!ATTLIST
-  filename CDATA #REQUIRED
+       filename CDATA #REQUIRED
 >
 
 <!ELEMENT postgis>
 <!ATTLIST
-  host CDATA #REQUIRED
-  port CDATA #REQUIRED
-  username CDATA #REQUIRED
-  password CDATA #REQUIRED
+       host CDATA #REQUIRED
+       port CDATA #REQUIRED
+       username CDATA #REQUIRED
+       password CDATA #REQUIRED
+>
+
+<!ELEMENT raster>
+<!ATTLIST
+       filename CDATA #REQUIRED
 >
index 04f45163961209b952f7354e3dbdc3901879287c..a84ed5c771423f3c025b1efe72d2f2ca6e5bad88 100644 (file)
@@ -18,6 +18,7 @@ libgtkgis_la_SOURCES = \
                        layersource.c \
                        layersourceshp.c \
                        layersourcepostgis.c \
+                       layersourceraster.c \
                        geometry.c \
                        geometrypoint.c \
                        geometryline.c \
@@ -33,6 +34,7 @@ libgtkgisinclude_HEADERS = \
                   layersource.h \
                   layersourceshp.h \
                   layersourcepostgis.h \
+                  layersourceraster.h \
                   geometry.h \
                   geometrypoint.h \
                   geometryline.h \
index 9d52f9d077d141a6092e4b43d8628354f4ede873..bcfd576147ea640d87e85b616bcb8902d7133b7e 100644 (file)
@@ -30,6 +30,9 @@
 static void gtk_gis_geometry_raster_class_init (GtkGisGeometryRasterClass *klass);
 static void gtk_gis_geometry_raster_init (GtkGisGeometryRaster *gtk_gis_geometry_raster);
 
+static
+GooCanvasItem *gtk_gis_geometry_raster_draw (GtkGisGeometry *raster, GtkGisScale *scale);
+
 static void gtk_gis_geometry_raster_set_property (GObject *object,
                                      guint property_id,
                                      const GValue *value,
@@ -45,6 +48,10 @@ static void gtk_gis_geometry_raster_get_property (GObject *object,
 typedef struct _GtkGisGeometryRasterPrivate GtkGisGeometryRasterPrivate;
 struct _GtkGisGeometryRasterPrivate
        {
+               GdkPixbuf *pixbuf;
+
+               gdouble x;
+               gdouble y;
        };
 
 G_DEFINE_TYPE (GtkGisGeometryRaster, gtk_gis_geometry_raster, TYPE_GTK_GIS_GEOMETRY)
@@ -53,36 +60,69 @@ static void
 gtk_gis_geometry_raster_class_init (GtkGisGeometryRasterClass *klass)
 {
        GObjectClass *object_class = G_OBJECT_CLASS (klass);
+       GtkGisGeometryClass *geometry_class = GTK_GIS_GEOMETRY_CLASS (klass);
 
        g_type_class_add_private (object_class, sizeof (GtkGisGeometryRasterPrivate));
 
        object_class->set_property = gtk_gis_geometry_raster_set_property;
        object_class->get_property = gtk_gis_geometry_raster_get_property;
+
+       geometry_class->draw = gtk_gis_geometry_raster_draw;
 }
 
 static void
 gtk_gis_geometry_raster_init (GtkGisGeometryRaster *gtk_gis_geometry_raster)
 {
        GtkGisGeometryRasterPrivate *priv = GTK_GIS_GEOMETRY_RASTER_GET_PRIVATE (gtk_gis_geometry_raster);
+
+       priv->pixbuf = NULL;
 }
 
 /**
- * gtk_gis_geometry_raster_new:
+ * gtk_gis_geometry_raster_new_from_pixbuf:
+ * @pixbuf:
+ * @x:
+ * @y:
  *
  * Creates a new #GtkGisGeometryRaster object.
  *
  * Returns: the newly created #GtkGisGeometryRaster object.
  */
 GtkGisGeometry
-*gtk_gis_geometry_raster_new ()
+*gtk_gis_geometry_raster_new_from_pixbuf (GdkPixbuf *pixbuf, gdouble x, gdouble y)
 {
        GtkGisGeometry *raster;
+       GtkGisGeometryRasterPrivate *priv;
 
        raster = g_object_new (gtk_gis_geometry_raster_get_type (), NULL);
 
+       priv = GTK_GIS_GEOMETRY_RASTER_GET_PRIVATE (raster);
+
+       priv->pixbuf = pixbuf;
+       priv->x = x;
+       priv->y = y;
+
        return raster;
 }
 
+static GooCanvasItem
+*gtk_gis_geometry_raster_draw (GtkGisGeometry *raster, GtkGisScale *scale)
+{
+       GooCanvasItem *item = NULL;
+
+       GtkGisGeometryRasterPrivate *priv = GTK_GIS_GEOMETRY_RASTER_GET_PRIVATE (GTK_GIS_GEOMETRY_RASTER (raster));
+
+       if (priv->pixbuf != NULL)
+               {
+                       item = goo_canvas_image_new (NULL,
+                                                    priv->pixbuf,
+                                                    priv->x, priv->y,
+                                                    NULL);
+               }
+
+       return item;
+}
+
 static void
 gtk_gis_geometry_raster_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
 {
index 38a9683166033e7cc33597ec9cb0eaceb5ee23ef..bfd4c770045315276cbd7f67b7d0a01a310074f8 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef __GTK_GIS_GEOMETRY_RASTER_H__
 #define __GTK_GIS_GEOMETRY_RASTER_H__
 
+#include <gdk-pixbuf/gdk-pixbuf.h>
+
 #include "geometry.h"
 
 G_BEGIN_DECLS
@@ -49,7 +51,7 @@ struct _GtkGisGeometryRasterClass
 GType gtk_gis_geometry_raster_get_type (void) G_GNUC_CONST;
 
 
-GtkGisGeometry *gtk_gis_geometry_raster_new (void);
+GtkGisGeometry *gtk_gis_geometry_raster_new_from_pixbuf (GdkPixbuf *pixbuf, gdouble x, gdouble y);
 
 
 G_END_DECLS
index 64d6ecc3ae40048fd046a10a164b1dc1036c67aa..519030880e6fecd425c46e43c72bb791af32e6d6 100644 (file)
@@ -30,6 +30,7 @@
 #include "layersource.h"
 #include "layersourceshp.h"
 #include "layersourcepostgis.h"
+#include "layersourceraster.h"
 
 static void gtk_gis_class_init (GtkGisClass *klass);
 static void gtk_gis_init (GtkGis *gtk_gis);
@@ -204,7 +205,8 @@ GtkWidget
                                                                                                                {
                                                                                                                        if (cur->type == XML_ELEMENT_NODE
                                                                                                                                && (xmlStrcmp (cur->name, "shape") == 0
-                                                                                                                               || xmlStrcmp (cur->name, "postgis") == 0))
+                                                                                                                               || xmlStrcmp (cur->name, "postgis") == 0
+                                                                                                                               || xmlStrcmp (cur->name, "raster") == 0))
                                                                                                                                {
                                                                                                                                        xmlNode *xml_source_spec;
                                                                                                                                        GtkGisLayer *layer = NULL;
@@ -236,6 +238,23 @@ GtkWidget
                                                                                  xmlGetProp (cur, (const xmlChar *)"username"),
                                                                                  xmlGetProp (cur, (const xmlChar *)"password"));
                                                                                                                                                }
+                                                                                                                                       else if (xmlStrcmp (cur->name, "raster") == 0)
+                                                                                                                                               {
+                                                                                                                                                       gchar *filename;
+
+                                                                                                                                                       filename = xmlGetProp (cur, (const xmlChar *)"filename");
+                                                                                                                                                       if (filename != NULL)
+                                                                                                                                                               {
+                                                                                                                                                                       if (!g_path_is_absolute (filename))
+                                                                                                                                                                               {
+                                                                                                                                                                                       filename = g_build_filename (g_get_current_dir (),
+                                                                                                                                                                                                                    filename,
+                                                                                                                                                                                                                    NULL);
+                                                                                                                                                                               }
+
+                                                                                                                                                                       layer_source = gtk_gis_layer_source_raster_new ((const gchar *)filename);
+                                                                                                                                                               }
+                                                                                                                                               }
 
                                                                                                                                        if (layer_source != NULL)
                                                                                                                                                {
@@ -320,7 +339,7 @@ void
 gtk_gis_add_layer (GtkGis *gtkgis, GtkGisLayer *layer)
 {
        GtkGisPrivate *priv;
-       GtkGisLayerExtent extent;
+       GtkGisLayerExtent *extent;
 
        priv = GTK_GIS_GET_PRIVATE (gtkgis);
 
@@ -328,39 +347,42 @@ gtk_gis_add_layer (GtkGis *gtkgis, GtkGisLayer *layer)
 
        extent = gtk_gis_layer_get_extent (layer);
 
-       if (priv->extent == NULL)
+       if (extent != NULL)
                {
-                       priv->extent = g_malloc (sizeof (GtkGisLayerExtent));
-                       priv->extent->min_x = extent.min_x;
-                       priv->extent->max_x = extent.max_x;
-                       priv->extent->min_y = extent.min_y;
-                       priv->extent->max_y = extent.max_y;
-               }
-       else
-               {
-                       if (extent.min_x < priv->extent->min_x)
+                       if (priv->extent == NULL)
                                {
-                                       priv->extent->min_x = extent.min_x;
+                                       priv->extent = g_malloc (sizeof (GtkGisLayerExtent));
+                                       priv->extent->min_x = extent->min_x;
+                                       priv->extent->max_x = extent->max_x;
+                                       priv->extent->min_y = extent->min_y;
+                                       priv->extent->max_y = extent->max_y;
                                }
-                       if (extent.min_y < priv->extent->min_y)
-                               {
-                                       priv->extent->min_y = extent.min_y;
-                               }
-                       if (extent.max_x > priv->extent->max_x)
-                               {
-                                       priv->extent->max_x = extent.max_x;
-                               }
-                       if (extent.max_y > priv->extent->max_y)
+                       else
                                {
-                                       priv->extent->max_y = extent.max_y;
+                                       if (extent->min_x < priv->extent->min_x)
+                                               {
+                                                       priv->extent->min_x = extent->min_x;
+                                               }
+                                       if (extent->min_y < priv->extent->min_y)
+                                               {
+                                                       priv->extent->min_y = extent->min_y;
+                                               }
+                                       if (extent->max_x > priv->extent->max_x)
+                                               {
+                                                       priv->extent->max_x = extent->max_x;
+                                               }
+                                       if (extent->max_y > priv->extent->max_y)
+                                               {
+                                                       priv->extent->max_y = extent->max_y;
+                                               }
                                }
-               }
 
-       goo_canvas_set_bounds (GOO_CANVAS (priv->canvas),
-                              priv->extent->min_x,
-                              priv->extent->min_y,
-                              priv->extent->max_x,
-                              priv->extent->max_y);
+                       goo_canvas_set_bounds (GOO_CANVAS (priv->canvas),
+                                                          priv->extent->min_x,
+                                                          priv->extent->min_y,
+                                                          priv->extent->max_x,
+                                                          priv->extent->max_y);
+               }
 }
 
 /**
@@ -456,12 +478,21 @@ gtk_gis_zoom_to_max (GtkGis *gtkgis)
        GtkGisPrivate *priv;
        GtkGisScale *scale;
 
+       gdouble extx = 1.0;
+       gdouble exty = 1.0;
+
        priv = GTK_GIS_GET_PRIVATE (gtkgis);
 
        scale = g_malloc0 (sizeof (GtkGisScale));
 
-       scale->x = GTK_WIDGET (gtkgis)->allocation.width / (priv->extent->max_x - priv->extent->min_x);
-       scale->y = GTK_WIDGET (gtkgis)->allocation.height / (priv->extent->max_y - priv->extent->min_y);
+       if (priv->extent != NULL)
+               {
+                       extx = priv->extent->max_x - priv->extent->min_x;
+                       exty = priv->extent->max_y - priv->extent->min_y;
+               }
+
+       scale->x = GTK_WIDGET (gtkgis)->allocation.width / extx;
+       scale->y = GTK_WIDGET (gtkgis)->allocation.height / exty;
        scale->xy = (scale->x + scale->y) / 2;
 
        gtk_gis_set_scale (gtkgis, scale);
index 3d01132f9feb6b11753fe06b32eeeff875934704..f33ce1bfac682a1d61fd12b621e07952b70a6c9a 100644 (file)
@@ -223,11 +223,11 @@ gtk_gis_layer_remove_geometry (GtkGisLayer *layer, GtkGisGeometry *geometry)
  *
  */
 GtkGisLayerExtent
-gtk_gis_layer_get_extent (GtkGisLayer *layer)
+*gtk_gis_layer_get_extent (GtkGisLayer *layer)
 {
        GtkGisLayerPrivate *priv = GTK_GIS_LAYER_GET_PRIVATE (layer);
 
-       GtkGisLayerExtent extent;
+       GtkGisLayerExtent *extent;
 
        extent = gtk_gis_layer_source_get_layer_extent (priv->source, priv->name);
 
index 84224b68aec42c7d166bac96509ce902ec027435..d6763b3b41e17503ff5ba6fa50fcbc414cb835bc 100644 (file)
@@ -77,7 +77,7 @@ void gtk_gis_layer_add_geometry (GtkGisLayer *layer,
 void gtk_gis_layer_remove_geometry (GtkGisLayer *layer,
                                     GtkGisGeometry *geometry);
 
-GtkGisLayerExtent gtk_gis_layer_get_extent (GtkGisLayer *layer);
+GtkGisLayerExtent *gtk_gis_layer_get_extent (GtkGisLayer *layer);
 
 gboolean gtk_gis_layer_get_editable (GtkGisLayer *layer);
 void gtk_gis_layer_set_editable (GtkGisLayer *layer,
index 3f8fb2aca134d9c8b65d3ece243de1f044a46fdd..ee12930c8fb1f93e843e3a6fcfa01220543940a3 100644 (file)
@@ -20,9 +20,6 @@
        #include <config.h>
 #endif
 
-#include <ogr_api.h>
-#include <ogr_core.h>
-
 #include "layersource.h"
 #include "geometry.h"
 #include "geometryline.h"
 static void gtk_gis_layer_source_class_init (GtkGisLayerSourceClass *klass);
 static void gtk_gis_layer_source_init (GtkGisLayerSource *gtk_gis_layer_source);
 
+static GList
+*gtk_gis_layer_source_get_geometries_from_ogr (GtkGisLayerSource *source,
+                                               const gchar *name);
+static GList
+*gtk_gis_layer_source_get_geometries_from_gdal (GtkGisLayerSource *source,
+                                                const gchar *name);
+
 static void
 gtk_gis_layer_source_set_ogr_datasource (GtkGisLayerSource *source,
-                                          OGRDataSourceH datasource);
+                                         OGRDataSourceH datasource);
+static void
+gtk_gis_layer_source_set_gdal_dataset (GtkGisLayerSource *source,
+                                       GDALDatasetH hDataset);
 
 static void gtk_gis_layer_source_set_property (GObject *object,
                                      guint property_id,
@@ -53,6 +60,7 @@ typedef struct _GtkGisLayerSourcePrivate GtkGisLayerSourcePrivate;
 struct _GtkGisLayerSourcePrivate
        {
                OGRDataSourceH datasource;
+               GDALDatasetH dataset;
 
                GtkGisLayerExtent *max_extent;
        };
@@ -67,6 +75,7 @@ gtk_gis_layer_source_class_init (GtkGisLayerSourceClass *klass)
        g_type_class_add_private (object_class, sizeof (GtkGisLayerSourcePrivate));
 
        klass->set_ogr_datasource = gtk_gis_layer_source_set_ogr_datasource;
+       klass->set_gdal_dataset = gtk_gis_layer_source_set_gdal_dataset;
 
        object_class->set_property = gtk_gis_layer_source_set_property;
        object_class->get_property = gtk_gis_layer_source_get_property;
@@ -78,18 +87,6 @@ gtk_gis_layer_source_init (GtkGisLayerSource *gtk_gis_layer_source)
        GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (gtk_gis_layer_source);
 }
 
-static void
-gtk_gis_layer_source_set_ogr_datasource (GtkGisLayerSource *source,
-                                         OGRDataSourceH datasource)
-{
-       GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (source);
-
-       priv->datasource = datasource;
-
-       priv->max_extent = NULL;
-}
-
-
 /**
  * gtk_gis_layer_source_get_geometries:
  * @source:
@@ -105,6 +102,173 @@ GList
 {
        GList *geometries = NULL;
 
+       GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (source);
+
+    if (priv->datasource != NULL)
+               {
+                       geometries = gtk_gis_layer_source_get_geometries_from_ogr (source, name);
+               }
+       else if (priv->dataset != NULL)
+               {
+                       geometries = gtk_gis_layer_source_get_geometries_from_gdal (source, name);
+               }
+
+       return geometries;
+}
+
+/**
+ * gtk_gis_layer_source_get_layer_geometry_type:
+ * @source:
+ * @name:
+ *
+ * Returns: a #GtkGisLayerGeometryType or -1 on error.
+ */
+GtkGisLayerGeometryType
+gtk_gis_layer_source_get_layer_geometry_type (GtkGisLayerSource *source,
+                                              const gchar *name)
+{
+       GtkGisLayerGeometryType type = -1;
+
+       OGRLayerH layer;
+       OGRFeatureH feature;
+
+       GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (source);
+
+       if (priv->datasource != NULL)
+               {
+                       layer = OGR_DS_GetLayerByName (priv->datasource, name);
+
+                       feature = OGR_L_GetNextFeature (layer);
+
+                       if (feature != NULL)
+                               {
+                                       OGRGeometryH poGeometry;
+
+                                       poGeometry = OGR_F_GetGeometryRef (feature);
+                                       if (poGeometry != NULL
+                                               && wkbFlatten (OGR_G_GetGeometryType(poGeometry)) == wkbPoint)
+                                               {
+                                                       type = LAYER_GEOMETRY_TYPE_POINT;
+                                               }
+                                       else if (poGeometry != NULL
+                                                        && wkbFlatten (OGR_G_GetGeometryType(poGeometry)) == wkbLineString)
+                                               {
+                                                       type = LAYER_GEOMETRY_TYPE_LINE;
+                                               }
+                                       else if (poGeometry != NULL
+                                                        && wkbFlatten (OGR_G_GetGeometryType(poGeometry)) == wkbPolygon)
+                                               {
+                                                       type = LAYER_GEOMETRY_TYPE_POLYGON;
+                                               }
+                               }
+               }
+       else if (priv->dataset != NULL)
+               {
+                       type = LAYER_GEOMETRY_TYPE_RASTER;
+               }
+
+       return type;
+}
+
+/**
+ * gtk_gis_layer_source_get_layer_extent:
+ * @source:
+ * @name:
+ *
+ * Returns:
+ */
+GtkGisLayerExtent
+*gtk_gis_layer_source_get_layer_extent (GtkGisLayerSource *source,
+                                        const gchar *name)
+{
+       GtkGisLayerExtent *extent = NULL;
+
+       GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (source);
+
+       if (priv->datasource != NULL)
+               {
+                       OGRLayerH layer;
+                       OGREnvelope psExtent;
+
+                       layer = OGR_DS_GetLayerByName (priv->datasource, name);
+
+                       if (layer != NULL)
+                               {
+                                       extent = g_malloc0 (sizeof (GtkGisLayerExtent));
+
+                                       OGR_L_GetExtent (layer, &psExtent, 1);
+
+                                       extent->min_x = psExtent.MinX;
+                                       extent->min_y = psExtent.MinY;
+                                       extent->max_x = psExtent.MaxX;
+                                       extent->max_y = psExtent.MaxY;
+                               }
+               }
+       else if (priv->dataset != NULL)
+               {
+                       gdouble adfGeoTransform[6];
+
+                       if (GDALGetGeoTransform (priv->dataset, adfGeoTransform) == CE_None)
+                               {
+                                       extent = g_malloc0 (sizeof (GtkGisLayerExtent));
+
+                                       extent->min_x = adfGeoTransform[0];
+                                       extent->min_y = adfGeoTransform[3];
+                                       extent->max_x = extent->min_x + GDALGetRasterXSize (priv->dataset);
+                                       extent->max_y = extent->min_y + GDALGetRasterYSize (priv->dataset);
+                               }
+               }
+
+       return extent;
+}
+
+void
+gtk_gis_layer_source_set_max_extent (GtkGisLayerSource *source,
+                                     GtkGisLayerExtent *extent)
+{
+       GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (source);
+
+       if (priv->max_extent == NULL)
+               {
+                       priv->max_extent = g_malloc0 (sizeof (GtkGisLayerExtent));
+               }
+
+       priv->max_extent->min_x = extent->min_x;
+       priv->max_extent->max_x = extent->max_x;
+       priv->max_extent->min_y = extent->min_y;
+       priv->max_extent->max_y = extent->max_y;
+}
+
+static void
+gtk_gis_layer_source_set_ogr_datasource (GtkGisLayerSource *source,
+                                         OGRDataSourceH datasource)
+{
+       GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (source);
+
+       priv->datasource = datasource;
+       priv->dataset = NULL;
+
+       priv->max_extent = NULL;
+}
+
+static void
+gtk_gis_layer_source_set_gdal_dataset (GtkGisLayerSource *source,
+                                       GDALDatasetH hDataset)
+{
+       GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (source);
+
+       priv->datasource = NULL;
+       priv->dataset = hDataset;
+
+       priv->max_extent = NULL;
+}
+
+static GList
+*gtk_gis_layer_source_get_geometries_from_ogr (GtkGisLayerSource *source,
+                                               const gchar *name)
+{
+       GList *geometries = NULL;
+
        OGRLayerH layer;
        OGRFeatureH feature;
 
@@ -115,8 +279,6 @@ GList
 
        GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (source);
 
-    g_return_if_fail (priv->datasource != NULL);
-
        layer = OGR_DS_GetLayerByName (priv->datasource, name);
 
        g_return_if_fail (layer != NULL);
@@ -218,97 +380,119 @@ GList
        return geometries;
 }
 
-/**
- * gtk_gis_layer_source_get_layer_geometry_type:
- * @source:
- * @name:
- *
- * Returns: a #GtkGisLayerGeometryType or -1 on error.
- */
-GtkGisLayerGeometryType
-gtk_gis_layer_source_get_layer_geometry_type (GtkGisLayerSource *source,
-                                              const gchar *name)
+static GList
+*gtk_gis_layer_source_get_geometries_from_gdal (GtkGisLayerSource *source,
+                                                const gchar *name)
 {
-       GtkGisLayerGeometryType type = -1;
+       GList *geometries = NULL;
+       GtkGisGeometry *geometry;
 
-       OGRLayerH layer;
-       OGRFeatureH feature;
+       gdouble adfGeoTransform[6];
 
        GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (source);
 
-       layer = OGR_DS_GetLayerByName (priv->datasource, name);
+       if (GDALGetGeoTransform (priv->dataset, adfGeoTransform) == CE_None)
+               {
+                       GdkPixbuf *pixbuf;
+                       guchar *pixbuf_data = NULL;
+                       gint pixbuf_size;
 
-       feature = OGR_L_GetNextFeature (layer);
+                       gint bands;
+                       gint band;
 
-       if (feature != NULL)
-               {
-                       OGRGeometryH poGeometry;
+                       gdouble x;
+                       gdouble y;
+                       gdouble width;
+                       gdouble height;
 
-                       poGeometry = OGR_F_GetGeometryRef (feature);
-                       if (poGeometry != NULL
-                           && wkbFlatten (OGR_G_GetGeometryType(poGeometry)) == wkbPoint)
-                               {
-                                       type = LAYER_GEOMETRY_TYPE_POINT;
-                               }
-                       else if (poGeometry != NULL
-                                && wkbFlatten (OGR_G_GetGeometryType(poGeometry)) == wkbLineString)
+                       gint i;
+
+                       GDALRasterBandH hBand;
+
+                       guint8 *pafScanlineR;
+                       guint8 *pafScanlineG;
+                       guint8 *pafScanlineB;
+                       guint8 *pafScanline;
+
+                       gint nXSize;
+                       gint nYSize;
+
+                       gdouble fixy;
+
+                       /*if (priv->max_extent == NULL)
                                {
-                                       type = LAYER_GEOMETRY_TYPE_LINE;
+                                       fixy = 0.0f;
                                }
-                       else if (poGeometry != NULL
-                                && wkbFlatten (OGR_G_GetGeometryType(poGeometry)) == wkbPolygon)
+                       else
+                               {*/
+                                       fixy = priv->max_extent->max_y + priv->max_extent->min_y;
+                               //}
+
+                       /* making the pixbuf */
+                       for (band = 1; band < 4; band++)
                                {
-                                       type = LAYER_GEOMETRY_TYPE_POLYGON;
-                               }
-               }
+                                       hBand = GDALGetRasterBand (priv->dataset, band);
 
-       return type;
-}
+                                       nXSize = GDALGetRasterBandXSize (hBand);
+                                       nYSize = GDALGetRasterBandYSize (hBand);
 
-/**
- * gtk_gis_layer_source_get_layer_extent:
- * @source:
- * @name:
- *
- * Returns:
- */
-GtkGisLayerExtent
-gtk_gis_layer_source_get_layer_extent (GtkGisLayerSource *source,
-                                       const gchar *name)
-{
-       OGRLayerH layer;
-       OGREnvelope psExtent;
-       GtkGisLayerExtent extent;
+                                       switch (band)
+                                               {
+                                                       case 1:
+                                                               pafScanlineR = (guint8 *) g_malloc (sizeof (guint8) * nXSize * nYSize);
+                                                               pafScanline = pafScanlineR;
+                                                               break;
+
+                                                       case 2:
+                                                               pafScanlineG = (guint8 *) g_malloc (sizeof (guint8) * nXSize * nYSize);
+                                                               pafScanline = pafScanlineG;
+                                                               break;
+
+                                                       case 3:
+                                                               pafScanlineB = (guint8 *) g_malloc (sizeof (guint8) * nXSize * nYSize);
+                                                               pafScanline = pafScanlineB;
+                                                               break;
+                                               }
 
-       GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (source);
+                                       GDALRasterIO (hBand, GF_Read, 0, 0, nXSize, nYSize,
+                                                                 pafScanline, nXSize, nYSize, GDT_Byte,
+                                                                 0, 0);
+                               }
 
-       layer = OGR_DS_GetLayerByName (priv->datasource, name);
+                       x = adfGeoTransform[0];
+                       y = /*fixy -*/ adfGeoTransform[3];
+                       width = GDALGetRasterXSize (priv->dataset);
+                       height = GDALGetRasterYSize (priv->dataset);
 
-       OGR_L_GetExtent (layer, &psExtent, 1);
+                       pixbuf_size = width * height;
+                       pixbuf_data = (guint8 *) g_malloc (sizeof (guint8) * pixbuf_size * 3);
 
-       extent.min_x = psExtent.MinX;
-       extent.min_y = psExtent.MinY;
-       extent.max_x = psExtent.MaxX;
-       extent.max_y = psExtent.MaxY;
+                       for (i = 0; i < pixbuf_size; i++)
+                               {
+                                       pixbuf_data[(i * 3)] = pafScanlineR[i];
+                                       pixbuf_data[(i * 3) + 1] = pafScanlineG[i];
+                                       pixbuf_data[(i * 3) + 2] = pafScanlineB[i];
+                               }
 
-       return extent;
-}
+                       pixbuf = gdk_pixbuf_new_from_data (pixbuf_data,
+                                                          GDK_COLORSPACE_RGB,
+                                                          FALSE,
+                                                          8,
+                                                          (int)width,
+                                                          (int)height,
+                                                          (int)width * 3,
+                                                          NULL,
+                                                          NULL);
 
-void
-gtk_gis_layer_source_set_max_extent (GtkGisLayerSource *source,
-                                     GtkGisLayerExtent *extent)
-{
-       GtkGisLayerSourcePrivate *priv = GTK_GIS_LAYER_SOURCE_GET_PRIVATE (source);
+                       geometry = gtk_gis_geometry_raster_new_from_pixbuf (pixbuf, x, y);
 
-       if (priv->max_extent == NULL)
-               {
-                       priv->max_extent = g_malloc0 (sizeof (GtkGisLayerExtent));
+                       if (geometry != NULL)
+                               {
+                                       geometries = g_list_append (geometries, geometry);
+                               }
                }
 
-       priv->max_extent->min_x = extent->min_x;
-       priv->max_extent->max_x = extent->max_x;
-       priv->max_extent->min_y = extent->min_y;
-       priv->max_extent->max_y = extent->max_y;
+       return geometries;
 }
 
 static void
index d325eb902676f8b8e3c1df365b9d762fbe4f341a..4ab8648127837365e95017238e9dd0367750a1ae 100644 (file)
@@ -23,6 +23,7 @@
 #include <glib.h>
 #include <glib-object.h>
 
+#include <gdal.h>
 #include <ogr_api.h>
 #include <ogr_core.h>
 
@@ -54,6 +55,8 @@ struct _GtkGisLayerSourceClass
 
                void (*set_ogr_datasource) (GtkGisLayerSource *source,
                                            OGRDataSourceH datasource);
+               void (*set_gdal_dataset) (GtkGisLayerSource *source,
+                                         GDALDatasetH hDataset);
        };
 
 GType gtk_gis_layer_source_get_type (void) G_GNUC_CONST;
@@ -65,8 +68,8 @@ GList *gtk_gis_layer_source_get_geometries (GtkGisLayerSource *source,
 GtkGisLayerGeometryType gtk_gis_layer_source_get_layer_geometry_type (GtkGisLayerSource *source,
                                                                       const gchar *name);
 
-GtkGisLayerExtent gtk_gis_layer_source_get_layer_extent (GtkGisLayerSource *source,
-                                                         const gchar *name);
+GtkGisLayerExtent *gtk_gis_layer_source_get_layer_extent (GtkGisLayerSource *source,
+                                                          const gchar *name);
 
 void gtk_gis_layer_source_set_max_extent (GtkGisLayerSource *source,
                                           GtkGisLayerExtent *extent);
diff --git a/src/layersourceraster.c b/src/layersourceraster.c
new file mode 100644 (file)
index 0000000..be73be0
--- /dev/null
@@ -0,0 +1,154 @@
+/*
+ * Copyright (C) 2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
+#include <gdal.h>
+
+#include "layersourceraster.h"
+
+static void gtk_gis_layer_source_raster_class_init (GtkGisLayerSourceRasterClass *klass);
+static void gtk_gis_layer_source_raster_init (GtkGisLayerSourceRaster *gtk_gis_layer_source_raster);
+
+static void
+gtk_gis_layer_source_raster_set_gdal_dataset (GtkGisLayerSource *source,
+                                              GDALDatasetH hDataset);
+
+static void gtk_gis_layer_source_raster_set_property (GObject *object,
+                                     guint property_id,
+                                     const GValue *value,
+                                     GParamSpec *pspec);
+static void gtk_gis_layer_source_raster_get_property (GObject *object,
+                                     guint property_id,
+                                     GValue *value,
+                                     GParamSpec *pspec);
+
+
+#define GTK_GIS_LAYER_SOURCE_RASTER_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_GTK_GIS_LAYER_SOURCE_RASTER, GtkGisLayerSourceRasterPrivate))
+
+typedef struct _GtkGisLayerSourceRasterPrivate GtkGisLayerSourceRasterPrivate;
+struct _GtkGisLayerSourceRasterPrivate
+       {
+               gchar *filename;
+       };
+
+G_DEFINE_TYPE (GtkGisLayerSourceRaster, gtk_gis_layer_source_raster, TYPE_GTK_GIS_LAYER_SOURCE)
+
+static void
+gtk_gis_layer_source_raster_class_init (GtkGisLayerSourceRasterClass *klass)
+{
+       GObjectClass *object_class = G_OBJECT_CLASS (klass);
+       GtkGisLayerSourceClass *gtkgislayersource_class = GTK_GIS_LAYER_SOURCE_CLASS (klass);
+
+       g_type_class_add_private (object_class, sizeof (GtkGisLayerSourceRasterPrivate));
+
+       object_class->set_property = gtk_gis_layer_source_raster_set_property;
+       object_class->get_property = gtk_gis_layer_source_raster_get_property;
+}
+
+static void
+gtk_gis_layer_source_raster_init (GtkGisLayerSourceRaster *gtk_gis_layer_source_raster)
+{
+       GtkGisLayerSourceRasterPrivate *priv = GTK_GIS_LAYER_SOURCE_RASTER_GET_PRIVATE (gtk_gis_layer_source_raster);
+}
+
+/**
+ * gtk_gis_layer_source_raster_new:
+ * @filename: a file name.
+ *
+ * Creates a new #GtkGisLayerSourceRaster object.
+ *
+ * Returns: the newly created #GtkGisLayerSourceRaster object.
+ */
+GtkGisLayerSource
+*gtk_gis_layer_source_raster_new (const gchar *filename)
+{
+       GtkGisLayerSource *source;
+       GtkGisLayerSourceRasterPrivate *priv;
+
+       source = g_object_new (gtk_gis_layer_source_raster_get_type (), NULL);
+
+       priv = GTK_GIS_LAYER_SOURCE_RASTER_GET_PRIVATE (GTK_GIS_LAYER_SOURCE_RASTER (source));
+
+       priv->filename = g_strdup (filename);
+
+       /* Register all GDAL drivers */
+       GDALAllRegister ();
+
+       /* Open dataset */
+       gtk_gis_layer_source_raster_set_gdal_dataset (source,
+                                                     GDALOpen (priv->filename, GA_ReadOnly));
+
+       return source;
+}
+
+/**
+ * gtk_gis_layer_source_raster_get_filename:
+ * @source:
+ *
+ * Returns: the #GtkGisLayerSourceRaster's file name.
+ */
+gchar
+*gtk_gis_layer_source_raster_get_filename (GtkGisLayerSourceRaster *source)
+{
+       GtkGisLayerSourceRasterPrivate *priv = GTK_GIS_LAYER_SOURCE_RASTER_GET_PRIVATE (source);
+
+       return g_strdup (priv->filename);
+}
+
+static void
+gtk_gis_layer_source_raster_set_gdal_dataset (GtkGisLayerSource *source,
+                                              GDALDatasetH hDataset)
+{
+       if (IS_GTK_GIS_LAYER_SOURCE (source) && GTK_GIS_LAYER_SOURCE_GET_CLASS (source)->set_gdal_dataset != NULL)
+               {
+                       GTK_GIS_LAYER_SOURCE_GET_CLASS (source)->set_gdal_dataset (source, hDataset);
+               }
+}
+
+static void
+gtk_gis_layer_source_raster_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
+{
+       GtkGisLayerSourceRaster *source = GTK_GIS_LAYER_SOURCE_RASTER (object);
+
+       GtkGisLayerSourceRasterPrivate *priv = GTK_GIS_LAYER_SOURCE_RASTER_GET_PRIVATE (source);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
+
+static void
+gtk_gis_layer_source_raster_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
+{
+       GtkGisLayerSourceRaster *source = GTK_GIS_LAYER_SOURCE_RASTER (object);
+
+       GtkGisLayerSourceRasterPrivate *priv = GTK_GIS_LAYER_SOURCE_RASTER_GET_PRIVATE (source);
+
+       switch (property_id)
+               {
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+                               break;
+               }
+}
diff --git a/src/layersourceraster.h b/src/layersourceraster.h
new file mode 100644 (file)
index 0000000..51e14cd
--- /dev/null
@@ -0,0 +1,59 @@
+/*
+ * Copyright (C) 2009 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ * 
+ */
+
+#ifndef __GTK_GIS_LAYER_SOURCE_RASTER_H__
+#define __GTK_GIS_LAYER_SOURCE_RASTER_H__
+
+#include "layersource.h"
+
+G_BEGIN_DECLS
+
+
+#define TYPE_GTK_GIS_LAYER_SOURCE_RASTER                 (gtk_gis_layer_source_raster_get_type ())
+#define GTK_GIS_LAYER_SOURCE_RASTER(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_GTK_GIS_LAYER_SOURCE_RASTER, GtkGisLayerSourceRaster))
+#define GTK_GIS_LAYER_SOURCE_RASTER_CLASS(klass)         (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_GTK_GIS_LAYER_SOURCE_RASTER, GtkGisLayerSourceRasterClass))
+#define IS_GTK_GIS_LAYER_SOURCE_RASTER(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_GTK_GIS_LAYER_SOURCE_RASTER))
+#define IS_GTK_GIS_LAYER_SOURCE_RASTER_CLASS(klass)      (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_GTK_GIS_LAYER_SOURCE_RASTER))
+#define GTK_GIS_LAYER_SOURCE_RASTER_GET_CLASS(obj)       (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_GTK_GIS_LAYER_SOURCE_RASTER, GtkGisLayerSourceRasterClass))
+
+
+typedef struct _GtkGisLayerSourceRaster GtkGisLayerSourceRaster;
+typedef struct _GtkGisLayerSourceRasterClass GtkGisLayerSourceRasterClass;
+
+struct _GtkGisLayerSourceRaster
+       {
+               GtkGisLayerSource parent;
+       };
+
+struct _GtkGisLayerSourceRasterClass
+       {
+               GtkGisLayerSourceClass parent_class;
+       };
+
+GType gtk_gis_layer_source_raster_get_type (void) G_GNUC_CONST;
+
+
+GtkGisLayerSource *gtk_gis_layer_source_raster_new (const gchar *filename);
+
+gchar *gtk_gis_layer_source_raster_get_filename (GtkGisLayerSourceRaster *source);
+
+
+G_END_DECLS
+
+#endif /* __GTK_GIS_LAYER_SOURCE_RASTER_H__ */
index 127f692f1cfd66154e8f0a4cbe7a756e1c001556..5edaafbfab65793e7c5fe4fc7bcbde06ba2fbba6 100644 (file)
@@ -101,13 +101,13 @@ GtkGisLayerSource
 }
 
 /**
- * gtk_gis_layer_source_shp_new:
+ * gtk_gis_layer_source_shp_get_filename:
  * @source:
  *
  * Returns: the #GtkGisLayerSourceShp's file name.
  */
 gchar
-*gtk_gis_layer_get_filename (GtkGisLayerSourceShp *source)
+*gtk_gis_layer_source_shp_get_filename (GtkGisLayerSourceShp *source)
 {
        GtkGisLayerSourceShpPrivate *priv = GTK_GIS_LAYER_SOURCE_SHP_GET_PRIVATE (source);
 
index efe82e76e66f5e6fc031c5f898bb5eb9b0cb6517..afb638e222c52e1164e42bc9a8be6921c46db02f 100644 (file)
@@ -51,7 +51,7 @@ GType gtk_gis_layer_source_shp_get_type (void) G_GNUC_CONST;
 
 GtkGisLayerSource *gtk_gis_layer_source_shp_new (const gchar *filename);
 
-gchar *gtk_gis_layer_get_filename (GtkGisLayerSourceShp *source);
+gchar *gtk_gis_layer_source_shp_get_filename (GtkGisLayerSourceShp *source);
 
 
 G_END_DECLS
index b567572889a605c081064003ed086baf2778df0d..579ab2739c39b01865b8abb90540cc572d59111f 100644 (file)
@@ -27,6 +27,7 @@
 #include <gtkgis/layersource.h>
 #include <gtkgis/layersourceshp.h>
 #include <gtkgis/layersourcepostgis.h>
+#include <gtkgis/layersourceraster.h>
 #include <gtkgis/geometry.h>
 #include <gtkgis/geometrypoint.h>
 #include <gtkgis/geometryline.h>
diff --git a/tests/samples/airports.dbf b/tests/samples/airports.dbf
deleted file mode 100644 (file)
index c841a13..0000000
Binary files a/tests/samples/airports.dbf and /dev/null differ
diff --git a/tests/samples/airports.prj b/tests/samples/airports.prj
deleted file mode 100644 (file)
index c63d34b..0000000
+++ /dev/null
@@ -1 +0,0 @@
-PROJCS["Albers",GEOGCS["GCS_North_American_1927",DATUM["D_North_American_1927",SPHEROID["Clarke_1866",6378206.4,294.978698213898]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Albers"],PARAMETER["standard_parallel_1",55],PARAMETER["standard_parallel_2",65],PARAMETER["latitude_of_origin",50],PARAMETER["central_meridian",-154],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Foot_US",0.30480060960121924]]
\ No newline at end of file
diff --git a/tests/samples/airports.shp b/tests/samples/airports.shp
deleted file mode 100644 (file)
index 98a6a98..0000000
Binary files a/tests/samples/airports.shp and /dev/null differ
diff --git a/tests/samples/airports.shx b/tests/samples/airports.shx
deleted file mode 100644 (file)
index ca2f4dd..0000000
Binary files a/tests/samples/airports.shx and /dev/null differ
diff --git a/tests/samples/alaska.dbf b/tests/samples/alaska.dbf
deleted file mode 100644 (file)
index c9f5a57..0000000
Binary files a/tests/samples/alaska.dbf and /dev/null differ
diff --git a/tests/samples/alaska.prj b/tests/samples/alaska.prj
deleted file mode 100644 (file)
index fb7ba96..0000000
+++ /dev/null
@@ -1 +0,0 @@
-PROJCS["Albers Equal Area",GEOGCS["clark66",DATUM["D_North_American_1927",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Albers"],PARAMETER["standard_parallel_1",55],PARAMETER["standard_parallel_2",65],PARAMETER["latitude_of_origin",50],PARAMETER["central_meridian",-154],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Foot_US",0.30480060960121924]]
\ No newline at end of file
diff --git a/tests/samples/alaska.shp b/tests/samples/alaska.shp
deleted file mode 100644 (file)
index 06ce12c..0000000
Binary files a/tests/samples/alaska.shp and /dev/null differ
diff --git a/tests/samples/alaska.shx b/tests/samples/alaska.shx
deleted file mode 100644 (file)
index 53bb5c1..0000000
Binary files a/tests/samples/alaska.shx and /dev/null differ
diff --git a/tests/samples/railroads.dbf b/tests/samples/railroads.dbf
deleted file mode 100644 (file)
index ebe5762..0000000
Binary files a/tests/samples/railroads.dbf and /dev/null differ
diff --git a/tests/samples/railroads.prj b/tests/samples/railroads.prj
deleted file mode 100644 (file)
index c63d34b..0000000
+++ /dev/null
@@ -1 +0,0 @@
-PROJCS["Albers",GEOGCS["GCS_North_American_1927",DATUM["D_North_American_1927",SPHEROID["Clarke_1866",6378206.4,294.978698213898]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Albers"],PARAMETER["standard_parallel_1",55],PARAMETER["standard_parallel_2",65],PARAMETER["latitude_of_origin",50],PARAMETER["central_meridian",-154],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Foot_US",0.30480060960121924]]
\ No newline at end of file
diff --git a/tests/samples/railroads.shp b/tests/samples/railroads.shp
deleted file mode 100644 (file)
index 7b9635a..0000000
Binary files a/tests/samples/railroads.shp and /dev/null differ
diff --git a/tests/samples/railroads.shx b/tests/samples/railroads.shx
deleted file mode 100644 (file)
index 4c70765..0000000
Binary files a/tests/samples/railroads.shx and /dev/null differ
diff --git a/tests/samples/rivers.dbf b/tests/samples/rivers.dbf
deleted file mode 100644 (file)
index 66e728b..0000000
Binary files a/tests/samples/rivers.dbf and /dev/null differ
diff --git a/tests/samples/rivers.prj b/tests/samples/rivers.prj
deleted file mode 100644 (file)
index fb7ba96..0000000
+++ /dev/null
@@ -1 +0,0 @@
-PROJCS["Albers Equal Area",GEOGCS["clark66",DATUM["D_North_American_1927",SPHEROID["Clarke_1866",6378206.4,294.9786982]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Albers"],PARAMETER["standard_parallel_1",55],PARAMETER["standard_parallel_2",65],PARAMETER["latitude_of_origin",50],PARAMETER["central_meridian",-154],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["Foot_US",0.30480060960121924]]
\ No newline at end of file
diff --git a/tests/samples/rivers.shp b/tests/samples/rivers.shp
deleted file mode 100644 (file)
index 9cfb15a..0000000
Binary files a/tests/samples/rivers.shp and /dev/null differ
diff --git a/tests/samples/rivers.shx b/tests/samples/rivers.shx
deleted file mode 100644 (file)
index 555bcf4..0000000
Binary files a/tests/samples/rivers.shx and /dev/null differ