[gdal-dev] Copyright notices for SWIG/PHP

2011-04-15 Thread Peter Hopfgartner
http://wiki.osgeo.org/wiki/GDAL_Provenance_Review lists the PHP bindings as 
lacking copyright headers. If I got it right, this prevents Fedora to build 
those bindings.
Is there any chance to get those copyright into the headers? Has the original 
author been MIA?

Thanks,

Peter
 
R3 GIS Srl - GmbH
http://www.r3-gis.com


___
gdal-dev mailing list
gdal-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/gdal-dev


[gdal-dev] ogr2ogr clipping issue

2011-04-15 Thread edwarddes
I am trying to clip a dxf to a region, using the following command:
ogr2ogr -f DXF -clipdst $w $e $s $n ./tmp/${BASE}_avg_05_unbuffered.dxf
./tmp/${BASE}_avg_05.dxf
where w,e,s,n are defined as follows:
echo $w $e $s $n
225000 229000 902000 906000

The data is properly clipped on the north and west side, but on the south
and east side, no clipping takes place.  The source file has extents that
are 100units larger in each direction

Any suggestions?

--
View this message in context: 
http://osgeo-org.1803224.n2.nabble.com/ogr2ogr-clipping-issue-tp6277378p6277378.html
Sent from the GDAL - Dev mailing list archive at Nabble.com.
___
gdal-dev mailing list
gdal-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/gdal-dev


Re: [gdal-dev] ogr2ogr clipping issue

2011-04-15 Thread Frank Warmerdam

On 11-04-15 03:09 PM, edwarddes wrote:

I am trying to clip a dxf to a region, using the following command:
ogr2ogr -f DXF -clipdst $w $e $s $n ./tmp/${BASE}_avg_05_unbuffered.dxf
./tmp/${BASE}_avg_05.dxf
where w,e,s,n are defined as follows:
echo $w $e $s $n
225000 229000 902000 906000

The data is properly clipped on the north and west side, but on the south
and east side, no clipping takes place.  The source file has extents that
are 100units larger in each direction


Edward,

From the usage message I see:

  [-clipdst [xmin ymin xmax ymax]|WKT|datasource]

I think you need

  -clipdst $w $s $e $n

That is, you have the arguments in the wrong order.

Best regards,
--
---+--
I set the clouds in motion - turn up   | Frank Warmerdam, warmer...@pobox.com
light and sound - activate the windows | http://pobox.com/~warmerdam
and watch the world go round - Rush| Geospatial Programmer for Rent

___
gdal-dev mailing list
gdal-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/gdal-dev