Tagged Questions
0
votes
1answer
42 views
I want to change using C# the style of a set of shapefiles once I have uploaded them or while I am uploading them
I am using C# and the WebRequest class to create a worksapce and then another WebRequest to create a datastore and upload a folder full of shapefiles to a geoserver. However, I would also like to ...
1
vote
4answers
855 views
How to Read a Shapefile using C#?
I am new to ArcGIS and trying a few things..
I'm trying to read shape file(which is supply as an input) using c# and
I want to generate a .pdf file which contains underlying metadata information ...
2
votes
1answer
77 views
Using a map from ESRI Server in a radMap
I was wondering if there was a way to use a map that I have stored on an ESRI server in a telerik radMap. I am not very familiar with the radMap control so any help would be appreciated. I have found ...
3
votes
0answers
160 views
How to create Relationship Classes successfully
I'm new to ArcGis and I'm making the first steps at this time. At the moment I've two different shape files. The first shape file represents streets on a map with some detailed information in the ...
2
votes
3answers
242 views
Removing duplicate rows from a shapefile
I would like to write some c# code to delete duplicate rows from a shapefile stored in a folder.
Can anyone provide me with an example or pointers on the best way to attempt this, please?
0
votes
0answers
182 views
How To List Fields of a Shapefile and Add a New Field using C# and ArcObjects?
Can someone please help me to figure out how to get list of attribute fields name from a shapefile? For example , let's say I have a shapefile called "NewDH.shp" stored at "D://GIS". How I can list ...
3
votes
1answer
260 views
Polygon with the same points over and over
I am in the process of reading shape files (provided to us by the vendor dealing with GIS products) using a C# program and loading them into a SQL database. I first read the text for the shape and ...
2
votes
1answer
974 views
Upload Shape File using GeoServer REST API and C#
I'd like to upload shape files using GeoServer REST API and C#. So far, I can create workspaces using the REST API and C#. From GeoServer documentation (specific to cURL), the difference between ...
5
votes
2answers
367 views
Translating all features in a shape file
I have a friend with a bit of a problem. He has 1000+ shape files mapping paddocks and being used for precision agriculture. He's recently discovered the base station positions used to create these ...
9
votes
2answers
1k views
API documentation for Gdal/Ogr with C#
I want to assign projection to shapefile in my web C# application, for this i am using Gdal/OGR/OSR C# bindings and add osr_csharp.dll and ogr_csharp.dll references. But i am facing some difficulty ...
3
votes
1answer
783 views
C# Library for converting Shapefile Projection
Is there any C# library which can take a shapefile as an input with projection information defined (e.g, EPSG 3011) and return a new shapefile with user specified projection (e.g, EPSG 4326) ?
3
votes
1answer
404 views
Opening a shapefile with roads, how to display the roadnames?
I am using
((AxMapControl)myMap.AddShapeFile( directory, shapeFileName)
To display a shape file which has road data. Now the roads display properly, but the road names aren't displaying. How can ...