Re: [gdal-dev] RFC 48: Geographical networks support

2014-09-09 Thread Imran Rajjad
Will this be available for java bindings too? On Sep 9, 2014 12:53 AM, "Even Rouault" wrote: > > > - gnm/frmts/gnm_frmts.h : I'm a bit concerned about exposing (installed > > > > > header + CPL_DLL) an interface that has not yet been implemented. My > > > intuition > > > is that it might change

[gdal-dev] gdal_retile x64 : No input files selected.

2014-04-11 Thread Imran Rajjad
Hi list, I am using GDAL 10.1 x64 with Python 2.7.5 x64 It seems python script is not able to find the input file W:\>gdal_retile.py -v -r -levels 4 -ps 2048 2048 -co "TILED=YES" -co "COMPRESS=JPEG" -targetDir w:\dem\dem_pyramid w:\dem\dem.tif 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500

Re: [gdal-dev] How remove the piramids from TIFF non-georef

2014-01-15 Thread Imran Rajjad
gdaladdo -clean Did u try this? On Jan 15, 2014 9:11 PM, "Antonio Falciano" wrote: > Il 15/01/2014 12:01, Andrea Peri ha scritto: > >> Hi, >> >> I have a lot of huge tiff not-gereferenced raster. >> These tiff are all with 4 bands (RGBA) and 10 pyramids inside. >> >> I need to remove the piramid

Re: [gdal-dev] Problem with Gdal/ogr Java

2012-10-10 Thread Imran Rajjad
Hi Wael. you need to use gdal.jar file in your java project and also include the required DLL(Win) in your class path, then you will be able to use GDAL in your Java project. download from http://www.gisinternals.com/sdk/ or http://trac.osgeo.org/gdal/wiki/DownloadingGdalBinaries look for GDAL.

Re: [gdal-dev] copy raster data in between file formats - Java

2012-06-13 Thread Imran Rajjad
Hi Florent, I get your point , but the thing is how does one copy raster across datasets when the required size value is more than Integer`s maximum value, It would make sense to fill memory raster data store with 1Gb of data and dump it in the destination data store, but things break down where

Re: [gdal-dev] copy raster data in between file formats - Java

2012-06-12 Thread Imran Rajjad
as big as 12GB, Its impossible to work with Memory Raster. regards, Imran On Tue, Jun 12, 2012 at 11:14 PM, Even Rouault wrote: > Le mardi 12 juin 2012 13:31:44, Imran Rajjad a écrit : >> Dear List, >> >> Have been trying to write raster from one file format e.g. BMP into

Re: [gdal-dev] copy raster data in between file formats - Java

2012-06-12 Thread Imran Rajjad
, Etienne Tourigny wrote: > Not sure about the java bindings - but why don't you use the > CreateCopy() function, which will take care of everything for you? > > I'd bet the error is because you didn't include the "band_list" parameter. > > Etienne > &

[gdal-dev] copy raster data in between file formats - Java

2012-06-12 Thread Imran Rajjad
Dear List, Have been trying to write raster from one file format e.g. BMP into a tiff file which will eventually become a BIGTiff. The current output is a grey image whereas the output should be RGB. The GeoTiFF is not accepting bands for some reasons, To write a multiband geoTiff do we require to

[gdal-dev] Re: delete feature without fid

2012-02-01 Thread Imran Rajjad
i think its f.GetFID() I`m guessing to show these changes on the file we need to call layer.SyncToDisk(); regards, Imran On Thu, Feb 2, 2012 at 11:59 AM, Imran Rajjad wrote: > hi list, > > in the gdal java bindings I need to delete a feature from layer, but it > seems the only w

[gdal-dev] delete feature without fid

2012-02-01 Thread Imran Rajjad
hi list, in the gdal java bindings I need to delete a feature from layer, but it seems the only way to delete the feature is its FID, which in my case is unknown. Is there anyway to find the true FID of a feature in layer or remove a feature by reference just like it can be updated or re-written.

[gdal-dev] loading oracle table as layer

2011-12-21 Thread Imran Rajjad
Hi list, I have an oracle table with a SDO_Geometry column, is it possible to access this table using gdal/java and do transactions like insertion and modifying features, since this table is used by a gis server and to make changes I have to go through a long process . I check the layer class in G

[gdal-dev] dgn support in gdal/java?

2011-08-31 Thread Imran Rajjad
Hi list, I was wondering if there is any support for reading DGN files using GDAL / Java? regards, -- I.R ___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/gdal-dev

Re: [gdal-dev] looking for executable binaries for solaris10

2011-04-21 Thread Imran Rajjad
.sunfreeware.com/ > > sophia > > > On Apr 21, 2011, at 4:33 AM, Imran Rajjad wrote: > >> hi, >> >> is there any executable binary version for solaris 10? >> >> regards, >> Imran >> >> -- >> I.R >> __

[gdal-dev] looking for executable binaries for solaris10

2011-04-21 Thread Imran Rajjad
hi, is there any executable binary version for solaris 10? regards, Imran -- I.R ___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/gdal-dev

Re: [gdal-dev] help with gdaladdo overviews resolution

2011-01-01 Thread Imran Rajjad
hmmm.. well I think I kind of figured it out, we need to multiply the orginal resolution with the respective overview number. Thanks anyway regards. Imran On Sat, Jan 1, 2011 at 3:49 PM, Even Rouault wrote: > Imran, > > You'd probably get more helpful advice on the geoserver mailing list. > >

[gdal-dev] help with gdaladdo overviews resolution

2011-01-01 Thread Imran Rajjad
Hi list, I`m trying to add overview to a geotiff files that is to be served through geoserver's image mosaic plugin. I have generated overview of the file but I`m not sure about what resoltuions to put in the plugin's properties files. this is my gdalinfo result of the file D:\data\coverages>gda

Re: [gdal-dev] Re: problem with gdaltindex

2010-11-24 Thread Imran Rajjad
: > Imran Rajjad gmail.com> writes: > >> >> I think I found a way to handle this on windows. >> >> create a batch file and put it in the same folder of the tif files (or >> any other raster). put the following lines in the batch file and run >> it. >>

[gdal-dev] Re: problem with gdaltindex

2010-11-23 Thread Imran Rajjad
x location test %%a it will run the gdaltindex for each tif file in directory, however I still have no idea why the command line wont accept wildcard. regards, Imran On Wed, Nov 24, 2010 at 11:08 AM, Imran Rajjad wrote: > Hi. > > Im trying to generate an i

[gdal-dev] problem with gdaltindex

2010-11-23 Thread Imran Rajjad
Hi. Im trying to generate an index shape file for serveral geotiff files in the same directory and I am using gdaltindex -tileindex for that. It seems to work fine with complete file name but is not accepting wildcards incase I want to add all the files in the index. my command line of WinXp

Re: [gdal-dev] ogr2ogr OCI: ORA-13349 and ORA-13356

2010-10-11 Thread Imran Rajjad
Hi Sebastian did you verify geometries ? there is a tool in esri arcmap that validates and fixes geometries, I kind of had the same problem but I applied correction through arcMap , and it worked. regards. Imran On Mon, Oct 11, 2010 at 2:28 PM, Sebastian E. Ovide wrote: > Hi All, > Importing sh

Re: [gdal-dev] unable to append data to orale spatial

2010-08-12 Thread Imran Rajjad
een an issue > regarding appending a non-default coordinate dimension, but do not recall > whether that was ogr2ogr - which I use rarely - or an issue when programming > with the OGR API. > > Best wishes, > > Peter > > Imran Rajjad wrote: >> >> hi, >> >

Re: [gdal-dev] unable to append data to orale spatial

2010-08-12 Thread Imran Rajjad
there be a problem with the syntax here? ogr2ogr -f OCI OCI:usr/p...@ip:port/db file.shp -append -skipfailure -lco SRID=8307 -lco DIM=2 -lco GEOMETRY_NAME=GEOM -nln ASIA_POI regards, Imran On Wed, Aug 11, 2010 at 11:50 AM, Peter J Halls wrote: > Imran, > > Imran Rajjad wrote:

Re: [gdal-dev] unable to append data to orale spatial

2010-08-10 Thread Imran Rajjad
QLExecute > to handle SDO_GEOM_METADATA.  I simply generate this on the fly, along with > the SQL to update the spatial index. > > Best wishes, > > Peter > > Imran Rajjad wrote: >> >> Hi list, >> >> I inserted a shape file in oracle 11g, now I have anot

[gdal-dev] unable to append data to orale spatial

2010-08-10 Thread Imran Rajjad
Hi list, I inserted a shape file in oracle 11g, now I have another shape file with exactly same attributes, I`m using the -append option but it seems the new shapefile wont get appended to the table, there seems to be some problem related to the spatial index because data in both shape files does

Re: [gdal-dev] GDAL/OGR+PostGIS training

2010-06-16 Thread Imran Rajjad
will the training material be available online for people who cannot come? On Wed, Jun 16, 2010 at 6:47 PM, Jeff Hamann wrote: > Dear GDAL/OGR users and developers, > Yesterday, Forest Informatics, Inc., a provider of turnkey and custom > solutions for forest resource management announced a partn

[gdal-dev] export SDO to SHP?

2010-05-26 Thread Imran Rajjad
Hi list, is it possile to import and SDO table into a shape file using ogr2ogr? regards, Imran -- I.R ___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/gdal-dev

Re: [gdal-dev] Re: Hoe to convert ERDAS imagine(.img) files to ARC info ASCII files viceversa

2010-05-18 Thread Imran Rajjad
hi, Did you try ogr2ogr? it is also command line simple, I used it oftent convert between different formats. After installing GDAL type >ogrinfo /? to see the possible formats. regads, Imran 2010/5/18 Iván Sánchez Ortega : > El 18/05/2010 10:39, mail2vajram escribió: >> >> I don't know how to u

Re: [gdal-dev] Re: srs definition for wgs84

2010-05-13 Thread Imran Rajjad
Hi, I tried the following command , i guess I`m not getting the correct syntax here regards, Imran ogr2ogr -f OCI OCI:mdsys/mediat...@10.0.80.31:1521/attmsd parceldata.shp -skipfailures -lco SRID=4326 DIM=2 GEOMETRY_NAME=GEOM -lnl TABLE_NAME_IN_ORACLE=Parcel1 On Thu, May 13, 2010 at 5:02 PM, J

[gdal-dev] srs definition for wgs84

2010-05-13 Thread Imran Rajjad
Hi list, I`m trying to export a shape file to oracle, however when I view my oracle table I find that the SRS has not been set. I tried to add the -a_srs paramter to the command line and gave it 4326 which EPSG from Geographical WGS84 ogr2ogr -f OCI OCI:mdsys/mediat...@10.0.80.31:1521/attmsd rur