[gdal-dev] Directories and Parquet

2023-07-28 Thread Paul Ramsey
I am playing with accessing the Overture data dump, which is multiple files in each S3 bucket. The doco says that as of 3.6 (check!), with the libarrow_dataset build (check) I should be able to read directory collections as layers, but no luck thus far: AWS_REGION=us-west-2 AWS_NO_SIGN_REQUEST=YES

Re: [gdal-dev] Parquet and nest structures (JSON)

2023-07-28 Thread Paul Ramsey
You are playing with Overture data, yes? I am also poking around there. That error message seems to be on the Parquet read side rather than the GeoPKG write. AWS_REGION=us-west-2 AWS_NO_SIGN_REQUEST=YES ./ogrinfo /vsis3/overturemaps-us-west-2/release/2023-07-26-alpha.0/theme=admins/type=administra

Re: [gdal-dev] Report on GEOS maintenance grant

2023-02-27 Thread Paul Ramsey
Thanks so much Dan, it’s been great having you on patrol these last few months, and the big changes you got through lay a nice foundation for the future of the library. P > On Feb 27, 2023, at 9:02 AM, Howard Butler wrote: > > > >> On Feb 27, 2023, at 8:32 AM, Daniel Baston wrote: >> >>

Re: [gdal-dev] [geos-devel] GEOS Maintenance Grant

2022-02-15 Thread Paul Ramsey
+1, sounds wonderful. I'm willing to be the liason to the GDAL / NumFocus administrators for this work. P > On Feb 15, 2022, at 10:11 AM, Regina Obe wrote: > > GEOS PSC +1 > >> -Original Message- >> From: geos-devel [mailto:geos-devel-boun...@lists.osgeo.org] On Behalf Of >> Howard Bu

[gdal-dev] GEOS 3.10.0 Released

2021-10-20 Thread Paul Ramsey
: - CAPI: GEOSDistanceWithin, GEOSPreparedDistanceWithin (#1124, Sandro Santilli) - Output WKT using positional precision with the ryu library (#868, Paul Ramsey) - geosop CLI for GEOS (Martin Davis) - Full doxygen of the C-API (Paul Ramsey) - GeometryFixer class for validity enforcement (Ma

Re: [gdal-dev] Simple features/sql-mm and bezier/elliptical curves

2021-10-12 Thread Paul Ramsey
This would be something we could put our (PostGIS) OSGeo budget to, perhaps, in lieu of any other activities going on this year. P > On Oct 12, 2021, at 3:00 AM, Darafei Komяpa Praliaskouski > wrote: > > Hello, > > ISO SQL/MM has chapters for NURBS and other magical geometry types. The text

Re: [gdal-dev] OGR_L_SetAttributeFilter

2016-04-29 Thread Paul Ramsey
A new question not answered: what is the current specification for SQL filters in SetAttributeFilter? Has it evolved beyond this spec (referenced from the GDAL docs) http://ogdi.sourceforge.net/prop/6.2.CapabilitiesMetadata.html P. On Fri, Apr 29, 2016 at 12:19 PM, Paul Ramsey wrote: >

Re: [gdal-dev] OGR_L_SetAttributeFilter

2016-04-29 Thread Paul Ramsey
ms to be, which is pretty amazing. What happens if an OGR table also has a legit field named "fid"? P On Thu, Apr 28, 2016 at 7:21 PM, Paul Ramsey wrote: > http://www.gdal.org/ogr__api_8h.html#a4000d426bf26ad7cc7d4012634c93f09 > > So, the reference to valid attribute filters po

[gdal-dev] OGR_L_SetAttributeFilter

2016-04-28 Thread Paul Ramsey
http://www.gdal.org/ogr__api_8h.html#a4000d426bf26ad7cc7d4012634c93f09 So, the reference to valid attribute filters points to http://ogdi.sourceforge.net/prop/6.2.CapabilitiesMetadata.html And there it says that @field_name@ = @string_token@ and that "The @string_token@ starts with a characte

[gdal-dev] Bad Date Handling

2016-04-05 Thread Paul Ramsey
Hey all, We've had a client working with dodgy data who would like an option to avoid incompatible date mangling when reading bad data. Basically, OGR will consume some funky dates from CSV and Excel, like /00/00, but it will NULL out others, like 1971/34/34. The net result is that, when the d

Re: [gdal-dev] Ingesting ESRI geometry into PostGIS

2015-11-23 Thread Paul Ramsey
es anyone have an idea on how to resolve this? Thanks, David Vick Professional Services Engineer | Boundless dv...@boundlessgeo.com mobile: 1-636-698-3174 ___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/gd

Re: [gdal-dev] Processing huge DEM dataset

2015-04-23 Thread Paul Ramsey
I have in the past, with other tool sets, not GDAL, approached this by building out padded tiles as the first step. So for each tile, merge it with it’s neighbors, then clip out the middle so you get a somewhat larger tile. Give it a nice thick buffer. Now all your tiles overlap. Process them a

Re: [gdal-dev] Pg Table Listing

2015-03-18 Thread Paul Ramsey
geometry, once for geography) in the UNION. So nearing half a  second. But still… in the context of a batch process… hm. P. -- http://postgis.net http://cleverelephant.ca On March 18, 2015 at 10:28:58 AM, Paul Ramsey (pram...@cleverelephant.ca) wrote: > OK, yeah, even w/o populating

Re: [gdal-dev] Pg Table Listing

2015-03-18 Thread Paul Ramsey
elid = c.oid JOIN pg_namespace n ON c.relnamespace = n.oid  WHERE t.typname = 'geometry'::name AND c.relkind in ('r'::"char", 'v'::"char", 'm'::"char", 'f'::"char")  AND n.nspname != 'pg_catalog

Re: [gdal-dev] Pg Table Listing

2015-03-18 Thread Paul Ramsey
18, 2015 at 10:09:26 AM, Sandro Santilli (s...@keybit.net) wrote: > On Wed, Mar 18, 2015 at 09:58:20AM -0700, Paul Ramsey wrote: > > > There’s also a couple new relation types, ‘m’ for materialized > > views and ‘f’ for… gah! I don’t know. > > I think 'f' is f

Re: [gdal-dev] Pg Table Listing

2015-03-18 Thread Paul Ramsey
On March 18, 2015 at 9:53:58 AM, Even Rouault (even.roua...@spatialys.com) wrote: > > It certainly is. I think the performance issue appeared with PostGIS 2.0 when > geometry_columns has become a view. > > > Probably either the query should just use the > > system tables alone, and take adv

[gdal-dev] Pg Table Listing

2015-03-18 Thread Paul Ramsey
We noticed that in databases with lots of tables, OGR throws some pretty crazy SQL at the database, and things get slow and the source of the problem seems to be here: http://trac.osgeo.org/gdal/browser/trunk/gdal/ogr/ogrsf_frmts/pg/ogrpgdatasource.cpp#L851 Which in addition to being a big quer

Re: [gdal-dev] reading postgis xyzm with ogr2ogr

2015-02-11 Thread Paul Ramsey
You could use the OGR sql query option to wrap your geometry call in a force2d or force3d function call in PostGIS? --  Paul Ramsey http://cleverelephant.ca http://postgis.net On February 11, 2015 at 9:54:07 AM, Duarte Carreira (dncarre...@gmail.com) wrote: Hi there.   I’m trying to figure

Re: [gdal-dev] PgSQL and OLCFastFeatureCount

2015-01-17 Thread Paul Ramsey
n 16, 2015 at 12:39 PM, Even Rouault wrote: > Selon Paul Ramsey : > >> The PgSQL driver is returning TRUE for OLCFastFeatureCount and then running >> "SELECT Count(*)â to fulfill the request. Since that is actually going to >> apply a full table scan, itâ s

[gdal-dev] PgSQL and OLCFastFeatureCount

2015-01-16 Thread Paul Ramsey
ndard for a fast feature count? Basically instant (the record count resides in header metadata or something similar)? Or “fast enough for small things”? P. --  Paul Ramsey http://cleverelephant.ca http://postgis.net___ gdal-dev mailing list gda

Re: [gdal-dev] Call for discussion on RFC 49: Curve geometries

2014-11-05 Thread Paul Ramsey
Super! --  Paul Ramsey http://cleverelephant.ca http://postgis.net On November 5, 2014 at 9:57:44 AM, Even Rouault (even.roua...@spatialys.com) wrote: Paul, Thanks for your remarks > My only concern/note here is with regard to the WKB type numbers for > features with a Z. The RFC

Re: [gdal-dev] Call for discussion on RFC 49: Curve geometries

2014-11-05 Thread Paul Ramsey
mask for all types. Of course, I could be wrong, maybe a snaggletooth is better, but it doesn’t pass the smell test for me P. --  Paul Ramsey http://cleverelephant.ca http://postgis.net On November 5, 2014 at 7:01:32 AM, Even Rouault (even.roua...@spatialys.com) wrote: Hi, This is a call for

[gdal-dev] GPKG application_id

2014-08-07 Thread Paul Ramsey
tables are missing, etc. Is it OK to make this change in trunk? In 1.12 or 1.11 branch? P. --  Paul Ramsey http://cleverelephant.ca http://postgis.net___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/gdal-dev

Re: [gdal-dev] ISO WKB

2013-12-18 Thread Paul Ramsey
eemed new to me (multiple geometry columns, e.g.) and I thought that those kinds of changes might be leading to a GDAL2 release. P. On Wed, Dec 18, 2013 at 1:20 AM, Even Rouault wrote: > Le mercredi 18 décembre 2013 06:28:16, Paul Ramsey a écrit : >> I don't think we should expose the

Re: [gdal-dev] ISO WKB

2013-12-17 Thread Paul Ramsey
On Tue, Dec 17, 2013 at 1:50 PM, Even Rouault wrote: > Le mardi 17 décembre 2013 22:38:26, Paul Ramsey a écrit : >> OK, so hide the ISO types from the outside world. No problem. >> >> Is it OK to have getGeometryType and exportToWkb accept wkbVariant >> optional param

Re: [gdal-dev] ISO WKB

2013-12-17 Thread Paul Ramsey
OK, so hide the ISO types from the outside world. No problem. Is it OK to have getGeometryType and exportToWkb accept wkbVariant optional parameters? P. On Tue, Dec 17, 2013 at 1:03 AM, Even Rouault wrote: > Selon Paul Ramsey : > >> Back to this, is it OK? > >

Re: [gdal-dev] ISO WKB

2013-12-16 Thread Paul Ramsey
Back to this, is it OK? How are we patching back to SVN? I can convert it into a patch and attach to a ticket, if that's the path. P. On Fri, Dec 13, 2013 at 12:00 PM, Paul Ramsey wrote: > I’ve pushed up some work to do this > > https://github.com/pramsey/gdal/tree/isowkb >

Re: [gdal-dev] ISO WKB

2013-12-13 Thread Paul Ramsey
tely P. --  Paul Ramsey http://cleverelephant.ca http://postgis.net On December 13, 2013 at 1:21:40 PM, Even Rouault (even.roua...@mines-paris.org) wrote: Le vendredi 13 décembre 2013 21:51:57, Paul Ramsey a écrit : > Actually, I think changing the contract on getGeometryType to on

Re: [gdal-dev] ISO WKB

2013-12-13 Thread Paul Ramsey
ine->getGeometryType() != wkbLineString     && poLine->getGeometryType() != wkbLineString25D) ) and very few unqualified calls to it. P. --  Paul Ramsey http://cleverelephant.ca http://postgis.net On December 13, 2013 at 12:00:34 PM, Paul Ramsey (pram...@cleverelephant.ca) wrote: I’ve pushe

Re: [gdal-dev] ISO WKB

2013-12-13 Thread Paul Ramsey
. importFromWkb also was changed to ingest the ISO variant if that’s what it’s fed. No changes to signature required there. P. --  Paul Ramsey http://cleverelephant.ca http://postgis.net On December 12, 2013 at 2:58:05 PM, Even Rouault (even.roua...@mines-paris.org) wrote: Le jeudi 12 décembre

Re: [gdal-dev] ISO WKB

2013-12-12 Thread Paul Ramsey
Sounds good to me. Is "wkbVariantOGC" the variant currently implemented ? Is  our 3D support really compliant with an OGC standard ?  Not really anymore, since SFSQL 1.2 defined OGC into sync with ISO. We’re in compliance with the old guidance that was passed and promptly forgotten in the period

Re: [gdal-dev] ISO WKB

2013-12-12 Thread Paul Ramsey
starting an isowkb branch on my git repo to hold this piece of work, I don’t think it’ll be very big. Then I’ll start asking about ‘m’ dimensions :) P. --  Paul Ramsey http://cleverelephant.ca http://postgis.net On December 12, 2013 at 2:33:41 PM, Even Rouault (even.roua...@mines-paris.org) wrote

[gdal-dev] ISO WKB

2013-12-12 Thread Paul Ramsey
support there now, or is there? P. --  Paul Ramsey http://cleverelephant.ca http://postgis.net___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/gdal-dev

Re: [gdal-dev] Autotest/Driver Registration Help

2013-11-06 Thread Paul Ramsey
have preferentially loaded its own libgdal, regardless of the value of the DYLD_LIBRARY_PATH. So, when working with the GDAL python autotest routines: BEWARE any GDALs that might be in your frameworks directory. P. On Wed, Nov 6, 2013 at 11:41 AM, Paul Ramsey wrote: > It does, though &#

Re: [gdal-dev] Autotest/Driver Registration Help

2013-11-06 Thread Paul Ramsey
ough. -> "GPKG" (read/write) P. -- Paul Ramsey | Boundless http://boundlessgeo.com/support/postgis 2508850632 | @pwramsey > > > > > > > > > On Wednesday, November 6, 2013 at 11:38 AM, Even Rouault wrote: > Le mercredi 06 novembre 20

[gdal-dev] Autotest/Driver Registration Help

2013-11-06 Thread Paul Ramsey
here. But the test simply will not register the driver. -- Paul Ramsey | Boundless http://boundlessgeo.com/support/postgis 2508850632 | @pwramsey > > > > > > > > > On Wednesday, November 6, 2013 at 10:54 AM, Paul Ramsey wrote: > Darn, I'm no

[gdal-dev] Fwd: GPKG Driver

2013-10-28 Thread Paul Ramsey
On Sun, Oct 27, 2013 at 4:09 PM, Even Rouault wrote: > Now my turn for questions : > - From your questions, I suppose you only consider the vector side of GPKG ? Yes, that's my initial target. Any comments/ideas on how to share functionality between GDAL and OGR drivers, since presumably eventu

[gdal-dev] GPKG Driver

2013-10-27 Thread Paul Ramsey
Hey all, I'm preparing to do up a GeoPkg driver. In searching the mail history and the web, the only references I see so far are suggestions as a summer of code project (which weren't taken up?) which included the recommendation of wrapping it into the existing sqlite driver. Couple questions: -

[gdal-dev] Fw: [TOSprint] Code Sprint 2014

2013-06-13 Thread Paul Ramsey
PSC / committers / coders, If you would join the 2014 code sprint at either of the proposed venues, noting so on the doodle would be must helpful! P. -- Paul Ramsey http://cleverelephant.ca http://postgis.net Forwarded message: > From: Paul Ramsey > To: Stephan Meißl >

[gdal-dev] FOSS4G North America Call for Presentations Closes March 1

2012-02-27 Thread Paul Ramsey
FOSS4G-NA (April 10-12, in Washington DC) is shaping up to be very successful: nearly half of our 400 registration slots are already filled, and lots of sponsors have signed on. Now it's up to you to bring the magic! If you are planning to speak at FOSS4G-NA, you must submit a presentation abstrac

Re: [gdal-dev] Re: OGR FileGDB driver: Failed at creating table ... (General function failure.)

2011-09-19 Thread Paul Ramsey
On Mon, Sep 19, 2011 at 12:14 AM, Hermann Peifer wrote: > On 16/09/2011 16:49, Paul Ramsey wrote: >> >> ...perhaps in the FGDB driver we can try and >> avoid using the WKT at all when we have a WKID available. > > I just disabled the generation of the WKT

Re: [gdal-dev] Re: OGR FileGDB driver: Failed at creating table ... (General function failure.)

2011-09-16 Thread Paul Ramsey
On Fri, Sep 16, 2011 at 3:16 AM, Hermann Peifer wrote: > Frank, Even, Paul, et al.: > Could it perhaps make sense if the morphToESRI() function paid more > attention to these string identifiers in order to produce even more > "ESRI-friendly" WKT? Yes, probably we will have to. I wonder how we wou

Re: [gdal-dev] OGR FileGDB driver: ERROR 1: 'OBJECTID' not recognised as an available field.

2011-09-14 Thread Paul Ramsey
Interesting. I wonder if this is a mismatch between FGDB considering the fid to be a column and ogr considering it to be something more intrinsic... I think it warrants a ticket unless other layer types misbehave in a similar way. P. On Wed, Sep 14, 2011 at 7:18 AM, Hermann Peifer wrote: > > Hi

Re: [gdal-dev] FileGDB OGR driver test

2011-07-31 Thread Paul Ramsey
Actually, it would be quite wise to check that... I've noticed (because I happen to have my working area in a Dropbox folder) the FGDB API creating transient lock files (gah!!) while in operation. P. On Sat, Jul 30, 2011 at 12:40 PM, Ragi Burhum wrote: > Do any of the APIs that return error mess

[gdal-dev] Re: Motion: Commit Access for Paul Ramsey

2011-07-21 Thread Paul Ramsey
Thanks Even, et al, great to be part of the team! P On Thu, Jul 21, 2011 at 6:57 AM, Even Rouault wrote: >> Motion: Extend GDAL/OGR Commit Access to Paul Ramsey >> > > I declare this motion passed with support from PSC members AndreyK, DanielM, > EvenR, FrankW, HowardB an

[gdal-dev] Re: Motion: Commit Access for Paul Ramsey

2011-07-20 Thread Paul Ramsey
On Wed, Jul 20, 2011 at 2:11 PM, Even Rouault wrote: > Paul, could you reply to this message indicating your agreement to the > guidelines listed in: > >    http://trac.osgeo.org/gdal/wiki/rfc3_commiters I have read and agree to your draconian terms. :) P. ___

Re: [gdal-dev] FileGDB OGR driver test

2011-07-13 Thread Paul Ramsey
The fact that sometimes you can see an extent (when you create a FGDB with OGR) seems to indicate a complexity beyond the driver simply not reading extents... are you certain this FGDB file has extents set? I assume it's OK for me to download it and test. P. On Wed, Jul 13, 2011 at 2:00 PM, Jeff

Re: [gdal-dev] Precision Mystery (FGDB)

2011-07-01 Thread Paul Ramsey
d white paper on the ESRI site that describes how ArcGIS > manages its coordinate systems internally. I hope that helps. > - Ragi > > >> Date: Thu, 30 Jun 2011 13:26:21 -0700 >> From: Paul Ramsey >> Subject: Re: [gdal-dev] Precision Mystery (FGDB) >> To: gdal-dev@lists

Re: [gdal-dev] Precision Mystery (FGDB)

2011-06-30 Thread Paul Ramsey
ey do... P. On Thu, Jun 30, 2011 at 11:52 AM, Peter Baumann wrote: > to retain the 3rd dimension, maybe better use WGS84-3D, EPSG:4329 ? > -Peter > > > On 06/30/2011 08:45 PM, Paul Ramsey wrote: >> >> In running a round trip from PostGIS>FGDB>PostGIS for a simple

[gdal-dev] Precision Mystery (FGDB)

2011-06-30 Thread Paul Ramsey
In running a round trip from PostGIS>FGDB>PostGIS for a simple table: 3dgeom=# select st_asewkt(g) from points ; st_asewkt SRID=4326;POINT(1 2 3) SRID=4326;POINT(2 3 4) SRID=4326;POINT(3 4 5) When I get to FGDB, I've lost my third dimension (still trying to figu

Re: [gdal-dev] Geometry as EWKB (PostGIS)

2011-06-29 Thread Paul Ramsey
ks Frank, P. On Wed, Jun 29, 2011 at 1:04 PM, Frank Warmerdam wrote: > On 11-06-29 03:56 PM, Paul Ramsey wrote: >> >> Hi all (Evan!): >> >> In my FGDB project, the participants compared a file I generated with >> FGDB>PostGIS>FGDB and noticed that the coordi

[gdal-dev] Geometry as EWKB (PostGIS)

2011-06-29 Thread Paul Ramsey
Hi all (Evan!): In my FGDB project, the participants compared a file I generated with FGDB>PostGIS>FGDB and noticed that the coordinates had drifted a little in some cases. Turns out, the PostGIS OGR driver using WKT as the transit format, so that's allowing occasional coordinate drift. I'd like t

Re: [gdal-dev] Encoding (FGDB)

2011-06-09 Thread Paul Ramsey
Awesome, exactly what I hoped! Thanks Frank. P On Thu, Jun 9, 2011 at 11:26 AM, Frank Warmerdam wrote: > On 11-06-09 10:33 AM, Paul Ramsey wrote: >> >> So, the FGDB API works with (mostly) UTF16-encoded wide characters >> (wstring). >> >> What is the GDAL inte

[gdal-dev] Encoding (FGDB)

2011-06-09 Thread Paul Ramsey
So, the FGDB API works with (mostly) UTF16-encoded wide characters (wstring). What is the GDAL internal standard for string encoding? Looks like (from the OLCStringsAsUTF8 capability) there is at least a loose standard that is looking for UTF8 narrow characters. Are there any existing utilities fo

Re: [gdal-dev] Table Names (FGDB)

2011-05-31 Thread Paul Ramsey
Yes, the magic of the configuration option... that makes much sense. So by default we will emit simple layer names, but we can be configured to emit qualified names. On Tue, May 31, 2011 at 1:23 PM, Even Rouault wrote: > Le mardi 31 mai 2011 18:43:15, Paul Ramsey a écrit : >> This i

Re: [gdal-dev] Table Names (FGDB)

2011-05-31 Thread Paul Ramsey
y. Can this be an option? Like "yes, consider the dataset > name"? Or "no, discard dataset name". I can see myself in both situations... > > Is the driver read only? If not, what will happen when you try the reverse? > From PgSql to fgdb? > > Duarte > &g

[gdal-dev] Table Names (FGDB)

2011-05-30 Thread Paul Ramsey
So, my goal is to map information from FGDB to PostGIS and as much fidelity as possible. FGDB includes a class called "Feature Dataset" which is basically a folder that holds "Feature Class" objects, which map directly to OGR layers. So the "Feature Dataset" then acts a good deal like a schema in

[gdal-dev] Metadata (FGDB)

2011-05-06 Thread Paul Ramsey
So, the end goal of my wanking around with OGR and FGDB is to write a utility that will convert FGDB into PostGIS and then back again with as much fidelity as possible. So ideally the output would look much like the input. FGDB has some fun stuff that doesn't fit into the OGR model very well. FGDB

[gdal-dev] LoadLayers (FGDB)

2011-05-06 Thread Paul Ramsey
Right now LoadLayers is really really over-determined, checking every node in the database for every possible child type, and then checking every child for every child type. Based on practice, is it incorrect to assume that we can only see the following OGR-readable objects in the database: \Table

[gdal-dev] Unique Layer Names (FGDB)

2011-05-06 Thread Paul Ramsey
So, the FGDB driver right now flattens out the GDB hierarchy a little (as far as I can tell there is not *too* much to flatted out) which could maybe (?) result in duplicate layer names... I opened up Michaels test database and printed out the layer names, basetable_2 basetable base_table1

Re: [gdal-dev] FGDB Opening Sample File

2011-04-28 Thread Paul Ramsey
tables. > > Mike > > > -- > Michael Smith > Remote Sensing/GIS Center > US Army Corps of Engineers > > > > On 4/28/11 1:19 PM, "Even Rouault" wrote: > >> Le jeudi 28 avril 2011 02:11:30, Paul Ramsey a écrit : >>> >>> I assume t

[gdal-dev] FGDB Opening Sample File

2011-04-27 Thread Paul Ramsey
Hi FGDB'ers, just getting started... I'm just trying out ogrinfo under Linux against various sample data and want to confirm some results... the file that Michael Smith sent gives me this result: [pramsey@localhost test-data]$ ogrinfo test_fgdb.gdb ERROR 1: GDB Error: Error opening \base2_some_lin

[gdal-dev] New York Code Sprint

2009-12-16 Thread Paul Ramsey
Fellow members of the C tribe! I hope the holidays find you in good spirits, and that you'll consider joining your other tribe members at the New York Code Sprint early next year: http://wiki.osgeo.org/wiki/New_York_Code_Sprint_2010 All details and planning on the wiki page. If you want to join i

[gdal-dev] Fwd: [postgis-devel] WKTRaster: RFC1: serialized form

2009-01-28 Thread Paul Ramsey
GDAL folks might be interested in reviewing this, to ensure it can support raster goodness well. P. -- Forwarded message -- From: strk Date: Wed, Jan 28, 2009 at 3:39 AM Subject: [postgis-devel] WKTRaster: RFC1: serialized form To: postgis-de...@postgis.refractions.net Cc: Pierr

[gdal-dev] 2009 Code Sprint Agenda

2009-01-19 Thread Paul Ramsey
I've started with some higher level ideas for an agenda. Individual teams might want to start breaking out their plans into work-by-day as we get closer. http://wiki.osgeo.org/wiki/Toronto_Code_Sprint_2009_Agenda P. http://wiki.osgeo.org/wiki/Toronto_Code_Sprint_2009

[gdal-dev] Toronto Code Sprint: March 7-10

2009-01-11 Thread Paul Ramsey
Community members, Reminder, there is a Code Sprint event occurring this spring that members of the "C tribe" of open source GIS projects might be interested in attending. http://wiki.osgeo.org/wiki/Toronto_Code_Sprint_2009 We have space for only about five more attendees, and a couple more sp

[gdal-dev] Toronto Code Sprint

2008-12-08 Thread Paul Ramsey
The 2009 Toronto Code Sprint is now set for March 7-10 at the Bond Place Hotel in Toronto, Canada. http://wiki.osgeo.org/wiki/Toronto_Code_Sprint_2009 We hope you will consider joining us for a worthy weekend of sprinting and getting connected. We are now looking for sponsors to cover venue an

[gdal-dev] Toronto Code Sprint

2008-11-26 Thread Paul Ramsey
A reminder, if you're interested in joining a winter code sprint in Toronto, please sign up at the wiki page: http://wiki.osgeo.org/wiki/Toronto_Code_Sprint_2009 Knowing tentative numbers will help us plan better. We're also looking for sponsors to keep the troops fed and watered. P. __

[gdal-dev] Toronto Code Sprint

2008-11-22 Thread Paul Ramsey
All, We are looking to have a code sprint in Toronto in mid-winter (not Italy in the springtime, but that's just how we roll up here in the Great White North). We are looking particularly at trying to bring C tribe members together, though other tribes are welcome to crash the party too. http://