The Esri shapefile or simply a shapefile is a popular geospatial vector data format for geographic information systems (GIS) software.

learn more… | top users | synonyms

0
votes
0answers
13 views

Add map in web page

I have multiple shape files of my country, its states and cities. I want them to display in map i.e. First layer is country, then states-layer and then cities layer. I only know that to do this, first ...
0
votes
1answer
35 views

Error opening SHP file in R using maptools readShapePoly

I am new to R and was following the following tutorial on the ggplot2 package found here. However the readShapePoly() function throws an error whenever I try to load the basic shapefile. I have used ...
0
votes
0answers
14 views

Show .shp file on Mapview(ArcGIS Android SDK 2.0.0)

I'm using ArcGIS Android SDK for first time. I woked on some sample project, able to get World map using this.. map = (MapView) findViewById(R.id.map); map.addLayer(new ...
0
votes
1answer
30 views

From OSM data to shape file. Parsing issue

I'm working at OpenStreetMap project for android at the moment. I want to retrieve OSM data from my app(nodes, markers and paths) and convert it to shape file (.shp, .dbf and .shx). Later, I'll load ...
2
votes
1answer
26 views

How to Convert shapefile into map file?

I have shapefiles for mapping. I need to convert that shapefile into map file. Please help me to convert the shapefile into map file? Thanks in Advance!!!!!!!
-1
votes
0answers
28 views

GIS Web Mapping application in asp.net or mvc? [closed]

I want to develop a GIS Web Mapping application in ASP.NET or MVC? Please, somebody suggest some good articles, and tell me what I should do to achieve this application in working mode. What i want ...
1
vote
3answers
44 views

Need the path for particular files using os.walk()

I'm trying to perform some geoprocessing. My task is to locate all shapefiles within a directory, and then find the full path name for that shapefile within the directory. I can get the name of the ...
0
votes
0answers
15 views

geoHash -ing for close points on each side of the equator

I am working on a project (java using NetBeans) which at some point needs to process map data. I have got Esri shape files for whole UK and need to create one dimensional index using geoHash as ...
0
votes
0answers
21 views

Shapefile rings not finite and not being read by R - how to fix?

I am trying to have R read a shapefile of a simple landscape classification (posted here) and am getting an error shape1 <-readShapePoly("JustForest_BahiaSul_1990_Test.shp", force_ring=TRUE, ...
0
votes
3answers
43 views

How to parse a .shp file?

I am interested in gleaning information from an ESRI .shp file. Specifically the .shp file of a polyline feature class. When I open the .dbf of a feature calss, I get what I would expect: a table ...
1
vote
0answers
28 views

How to append a shp file to modify map boundaries?

thanks to suggestions from @AriBFriedman and @PaulHiemstra and subsequently figuring out how to merge .shp files, I have managed to produce the following map using the following code and data: Data: ...
0
votes
1answer
62 views

create shape file from csv file with python

I am working on a really big script right now where I have a csv file that I have removed rows and columns from, and edited the headers. I need to create one big shapefile for the entire csv file then ...
1
vote
1answer
66 views

Counting polygons in shapefile

So I have multiple species ranges which look like the following (colored blue for example) This one runs east to west across Africa: I can get the total area by using gArea in the rgeos package. ...
1
vote
1answer
67 views

GDAL and OGR Virtual Format, reading *.csv file and creating shapefile of lines

I have a text file (*.csv) and have successfully defined XYZ within that file to write a shapefile of points: ogr2ogr -f "ESRI Shapefile" testing.shp conduitout.vrt My *.vrt file looks like this: ...
0
votes
1answer
20 views

geokettle shapefile input transformation not generation row numbers

Does anyone know why, on GeoKettle, the 'Shapefile File Input Step' is not generating the row number? How can I do a around? With the 'Add Sequence' step? This is all happening on a transformation. ...
1
vote
3answers
229 views

shapefile and matplotlib: plot polygon collection of shapefile coordinates

I'm trying to plot filled polygons of countries on the world map with matplotlib in python. I've got a shapefile with country boundary coordinates of every country. Now, I want to convert these ...
5
votes
2answers
119 views

Creating Shapefiles in R

I'm trying to create a shapefile in R that I will later import to either Fusion Table or some other GIS application. To start,I imported a blank shapefile containing all the census tracts in Canada. ...
0
votes
2answers
84 views

how to get the city name from shapefiles in java

I am having the hard time to understand the concept of shapefiles. I have downloaded the shape file and so far I have understood that I have to dump these file into mysql using some tool like ...
0
votes
0answers
36 views

How to determine correlation between two spatial databases?

I need to perform some tests and verifications on spatial databases and/or datasets. I need for example to analyze two databases and then determine if there is enough correlation between both. My main ...
0
votes
1answer
43 views

openstreet maps: dynamically retrieve shp files in python

I manage to install mapnik for python and am able to render maps using a provided shp file. Is there a possibility to retrieve dynamically the shape file for the map I want to render (given ...
0
votes
1answer
181 views

Google Earth Pro Alternatives

Is there any alternate free application like Google Earth Pro ? , My main thing is it should import shape files as a layer in the map.
0
votes
0answers
53 views

How to collect shapefile's data into one binary file using STL map structure

I am using shapefile C library to work with shapefiles. I need to collect the data of a shapefile (.shp, .shx, and .dbf) into one binary file using STL map structure. Is there anyway to do it without ...
1
vote
0answers
38 views

GeoTools Routable Shapefiles

Hello dear Geo Tools developers. I have discover Geo Tools few weeks ago and find it very interesting. However as I am completely new there I have a question. I try to use roads.shp file to calculate ...
0
votes
0answers
37 views

Python script for read color shapefile

I am trying to plot shapefile in python to make something like this: http://www.r-bloggers.com/amateur-mapmaking-getting-started-with-shapefiles/ I tried to read the book: Python for GeoSpatial ...
0
votes
3answers
62 views

How to dynamically draw maps

In an iOS application, I want to draw a United States map with states and counties outlined. I also want to draw individual states with counties outlined. I have researched using Shapefiles to do ...
0
votes
1answer
34 views

Natural Earth: How to get the position of all provinces that belong to a state

This question is about Natural earth 1:10 states and provinces.shp file. I'm using ogr2ogr and want to know the name of the id i need to pass . In purpose of pulling out the right states regions to ...
0
votes
1answer
70 views

Error with importShapefile with PBSmapping package in R

I am receiving a sporadic error message with importShapefile in PBSmapping (version 2.63.37) in RStudio (0.97.318), running R version 2.15.2, platform: i386-w64-mingw32/i386 (32-bit). I also received ...
11
votes
4answers
317 views

Random error: Attempted to read or write protected memory

We have a C# .Net application using WCF services. And the application is deployed in our production server under a Windows Service Application. One part of the module is responsible for creating ...
1
vote
0answers
133 views

Tile-based map solution supporting vector layers

I need to display a map of the US and, above that, a layer of states, another of counties and another of places (as per defined by US Census). Also, depending on some criteria, I need to dynamically ...
0
votes
1answer
79 views

How can I eliminate some areas by attribute from a shapefile in R and create a new shapefile?

I have been at this for a while now and have had some success, however when it comes to rewriting the file, I have had none. The shapefile I am working with is a polygon shapefile of metro and ...
2
votes
1answer
66 views

Questions about Spatial Join in R

I'm running into some trouble while attempting a spatial join between a shapefile and a data table in csv. Here's what my data looks like: Point Shapefile's attribute data (StudentID): ID ...
1
vote
1answer
95 views

Intercepting a filesystem write to a stream or byte array

I have a C library with a .NET wrapper (it's Shapelib in this case) that writes files (Shapefiles) to the filesystem using a path like C:\Path\To\Things\Filename.shp. However, writing the files to the ...
0
votes
0answers
136 views

To access shape files in android? [duplicate]

How to access shape files in android, please provide any tutorial or library?
0
votes
1answer
221 views

How to Import shape file into MySQL

I need to import the spatial data in shape file into MySQL tables. I am able to import into PostGreSQL. Any pointers for MySQL. I need the data in MySQL table.
2
votes
2answers
121 views

Create a 3D shapefile in GDAL

I'm trying to create a 3D shapefile using GDAL. My code to create a 3D block looks like this: OGRLayer *poLayer = ds->CreateLayer("Floor", NULL, wkbPolygon25D, NULL); OGRFeature *poFeature; ...
0
votes
2answers
113 views

R - Rasterize only the edges of a SpatialPolygonsDataFrame

I've imported a shapefile using readOGR (from package 'rgdal'), and obtained a SpatialPolygonsDataFrame. When I use the 'rasterize' function (of package 'raster') I obtain this ...
0
votes
1answer
253 views

How to export WKT from a Shapefile in c#?

I have a Shapefile that contains several thousand polygons. I need to read from this file in C# and output a list of WKT formatted strings. I looked at DotSpatial and the "CatFood" ESRI Shapefile ...
4
votes
1answer
157 views

Shapefile to Raster conversion in r

I have a shapefile downloaded from the worldwildlife.org for the terrestrial ecoregions of the world. The file can be loaded here: ...
0
votes
1answer
65 views

How to access a specific polygon in a shapefile by using a polygon id?

I have a shapefile created by QGIS which has 25 polygons. I need to access each polygon by using a polygon id. I am using a java application to access these polygons. Please let me know any good ...
0
votes
1answer
66 views

cannot handle matrix/array columns with write.dbf

hope i get everything together for this problem. first time for me and it's a little bit tricky to describe. I want to add some attributes to a dbf file and save it afterwards for use in qgis. its ...
-1
votes
1answer
254 views

Convert a shapefile from polygons to points? [closed]

I have a non-overlapping polygon-based shapefile (.shp) with a large spatial extent and many dozens of associated attributes. The shapefile is projected in UTMs. I would like to convert the polygons ...
0
votes
1answer
47 views

How to update (replace) a Postgis table?

I would like to "update" a "countries of the world"-postgis-table, by replacing it with another one which comes in form of a shapefile (dumped from a Postgis database) from my development server. ...
4
votes
1answer
304 views

R - stuck with plot() - Colouring shapefile polygons based upon a slot value

I have a shapefile showing remote areas in Australia, obtained from the Australian Bureau of Statistics: http://www.abs.gov.au/AUSSTATS/abs@.nsf/DetailsPage/1270.0.55.005July%202011?OpenDocument At ...
0
votes
1answer
91 views

List shp files fails with large number of files [closed]

I have been using the following to important .shp files into R fine for ages: require(maptools) require(rgeos) shp <- lapply(list.files(pattern="*.shp"), readShapePoly) If I am loading a ...
0
votes
2answers
83 views

How do I crop a shapefile to a specific set in R?

I have a shapefile for the UK but I only want England and Wales. Here is the code I've used so far: RG <- readOGR("filepath", "filename") UK <- grep("England", "Wales", RG$NAME_1) RG_EW <- ...
0
votes
1answer
406 views

Querying data in MySQL Geometry data type column

I have a table that stores polygons in a GEOMETRY data type column that I loaded via a shapefile using ogr2ogr. Here's the create statement: CREATE TABLE IF NOT EXISTS `sunzones` ( `OGR_FID` ...
6
votes
1answer
139 views

I want to create a countour map from x, y and z and clip the data with the shapefile using ggplot

I have a data set with Eastings, Northings and Age. I want to plot the age for my data set. The dataset is upload in the following loation: ...
0
votes
1answer
114 views

Shape information lost when using arcpy Polyline object as dictionary value

Environment: Win 7 Enterprise, SP1 | ArcGIS Desktop 10.0 (Python 2.6.5) I am attempting to store Arcpy Polyline objects as values in a Python dictionary so that they can be quickly referenced in a ...
1
vote
1answer
195 views

How to get exact featureinfo in wms layer Geoserver when polygon is small?

I got neighbor polygon feature info instated of clicked polygon feature info. In My Code: getfeaturenfo :function(e) { coordinates=e; var params = { ...
0
votes
1answer
293 views

security issue reproducing d3.js example at home

I'm trying to reproduce this example from github gist (an map of the United States) https://gist.github.com/4431123 The required file "us.json" I copied to my home directory. A similar problem has ...

1 2 3 4 5