Tagged Questions
6
votes
1answer
2k views
Rasterizing a GDAL layer
Edit
Here is the proper way to do it, and the documentation:
import random
from osgeo import gdal, ogr
RASTERIZE_COLOR_FIELD = "__color__"
def rasterize(pixel_size=25)
# Open the data ...
4
votes
3answers
3k views
Encoding problems with ogr2ogr and Postgis/PostgreSQL database
In our organization, we handle GIS content in different file formats. I need to put these files into a PostGIS database, and that is done using ogr2ogr. The problem is, that the database is UTF8 ...
3
votes
2answers
164 views
what is the relationship between GDAL, FDO and OGR?
Their documentations are simple and professional.
But they don't mention too much about the relationship between these open source projects.
When should I use which one? And which one is suitable for ...
2
votes
2answers
35 views
'module' object has no attribute 'OSMGeoAdmin'
The enviroment is as follows:
**Windows 7**
PATH=C:\Python27\;C:\Python27\Scripts;C:\Python27\Lib\site-packages\MySQLdb;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\OSGeo4W\bin
**python 2.7**
...
2
votes
3answers
965 views
GIS: When and why to use ArcObjects over GDAL programming to work with ArcGIS rasters and vectors?
Im just starting off with GDAL + python to support operations that cannot be done with ArcGIS python geoprocessing scripting. Mainly I am doing spatial modeling/analysis/editing of raster and vector ...
2
votes
1answer
866 views
ogr2ogr from PG to SHP changes data-type in .DBF
UpDate:
Yes, that was it!
Like mloskot said, the whole tabel needs to be dumped. selecting fields with sql loses information about fuield widths.
Thanks, that fixed it!
Hi All,
I have a problem ...
1
vote
0answers
42 views
Need advice on libraries/strategy to improve performance of my ruby based GIS tool [closed]
I have created a web application that dynamically renders GIS data (ie polygons, lines,multi-polygons-etc) for display in a Google Maps application using tiled images (ImageMapType).
The application ...
1
vote
2answers
371 views
How can I get the installed GDAL/OGR version from python?
How can I get the installed GDAL/OGR version from python?
I aware of the gdal-config program and are currently using the following:
In [3]: import commands
In [4]: commands.getoutput('gdal-config ...
0
votes
2answers
99 views
Where to begin? Using x,y,z data to display a building lot
I used a builders' level to get x,y,z coordinates on a 110' x 150' building lot.
They are not in equally spaced rows and columns, but are randomly placed.
I have found a lot of info on mapping and ...
0
votes
0answers
39 views
Rasterizing a s-57 file by the s-52 format
I wish to get a one time map of a certain area.
Currently I am able to get a map using:
gdal_rasterize -ts 8000 8000 -burn 200 -l Line -l Point -of BMP -ot Byte s57Data.000 out.bmp
But it does not ...
0
votes
1answer
105 views
How to aggregate points with same value into polygons from a shapefile using GDAL or any other opensource solution
I have a shapefile with around 19,000 points. Its basically export from a raster. Now i need to extract polygons, by aggregating the points which have same value.The field who's value i am going to ...
0
votes
1answer
114 views
GIS: How to resize layer using .prj (WKT) projection? (Geographic Coordinate System)
Briefly:
How to parametrize .prj WKT file so that I can perform 7 point tranformation (wiki). I know how false_easting and false_northing params work, but how can I adjust scale? I do not mean ...
0
votes
2answers
112 views
Python crashes when trying to perfrom buffer using OSGEO OGR
I'm trying to run a simple script to manually create some geometry and then perform a buffer on said geometry. However, python will completely crash whenever I try to perform a Buffer operation.
...
0
votes
2answers
43 views
Visualize text file with location info and intensity
I have an ascii text file containing location data (column 9-lat and 10-long) and intensity(column 20)
200010 207 020311 40658.5 406593 52 344927.31 7100203.50 -26.2078720 127.4491855 ...
0
votes
2answers
285 views
Representation of road topology in a GIS file
I'm just getting into GIS right now with a new project at my work - so I'm still kinda new at all of this. I'm using GDAL to work with the TigerLine Shape files from the previous US census land ...