geokettle-devel Mailing List for GeoKettle
Brought to you by:
tbadard
You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: Stephen D. <Ste...@li...> - 2012-09-11 06:10:35
|
Hi, Im Steve, a GeoKettle user and junior geospatial applications developer from Sydney, Australia. I work for a company that utilises GeoKettle and would like to get involved and maybe help out where I can with the continued development of the application. However, I have an embarrassing question. I can not figure out how to load the checkout into eclipse. I checked out the latest version from https://geokettle.svn.sourceforge.net/svnroot/geokettle geokettle When I try to load it into eclipse as an existing project (probably the wrong way to go about it), I get three options Branches/tags/trunk. I choose trunk, but I don't seem to get any code in the import just some scripts and .txt files. If anyone could give me some pointers that would be great. I would like to get a local copy running and see where I can help out with the project. Thanks, -- Stephen Dunne LISAsoft Sydney -------------------------- Suite 112, Jones Bay Wharf Pyrmont NSW 2009 Ph: +61 2 8570 5050 Fax: +61 2 8570 5099 ------------------------- ________________________________ The contents of this email are confidential and may be subject to legal or professional privilege and copyright. No representation is made that this email is free of viruses or other defects. If you have received this communication in error, you may not copy or distribute any part of it or otherwise disclose its contents to anyone. Please advise the sender of your incorrect receipt of this correspondence. |
From: Thierry B. <tb...@sp...> - 2011-08-05 21:12:31
|
Dear GeoKettle developers, Good news! Spatialytics is improving its Open Source GeoBI Projects, like GeoKettle, as well as all the SUPPORT around it. This is why we want to inform you that the actual mailing list is closing and we strongly encourage you to visit and subscribe the new online FORUM (http://www.spatialytics.com/forum/), specifically: - this one for developpers : http://www.spatialytics.com/forum/#/categories/dev-spatial_etl - this one for users : http://www.spatialytics.com/forum/#/categories/users-spatial_etl - et celui-ci en français : http://www.spatialytics.com/forum/#/categories/international-francais Check out the new version 2.0 of GeoKettle! (http://www.spatialytics.org/projects/geokettle/) Thanks and see you on the FORUM! Th. -- Thierry Badard, Ph.D. Spatialytics inc., CTO Genuine Geospatial Business Intelligence http://www.spatialytics.com |
From: Thierry B. <tb...@sp...> - 2011-07-23 17:15:31
|
Dear GeoKettle developers, As pre-announced on the Spatialytics forum (http://www.spatialytics.com/forum/) earlier this week, we are happy to inform you that the release of the new version of the open source spatial ETL tool GeoKettle is out. To know what is new in GeoKettle 2.0-RC1, please visit: - the announcement of the release on the Spatialytics blog: http://www.spatialytics.com/blog/spatialytics-announce-the-availability-of-geokettle-2-0-a-major-release-for-this-open-source-spatial-etl/ - the details about all the new features on the GeoKettle wiki: http://wiki.spatialytics.org/doku.php?id=projects:geokettle:documentation:what_is_new_in_version_2.0 We hope you will enjoy this new release of GeoKettle and we welcome your questions or requests for new features on the GeoKettle users forum (http://forum.spatialytics.com/categories/users-spatial_etl). Th. -- Thierry Badard, Ph.D. Spatialytics inc., CTO Genuine Geospatial Business Intelligence http://www.spatialytics.com |
From: Thierry B. <Thi...@sc...> - 2009-08-01 03:16:30
|
Hi Fabio and Antonio, As this email could be of interest for other GeoKettle developers, I forward my reply (see below) to the geokettle-devel mailing list too ... Fabio D'Ovidio a écrit : > Hello Thierry, Etienne, > as you just know, one of our trainees (Antonio Tremante) is working on > cadastral data trasformation for Italian Local Administrations by using > GeoKettle! > We have reached a good result thanks also to Etienne and his > suggestions...In particular we are now able to: > > 1. read XML file contained cadastral information (the files are given > by a Ministerial Entity) > 2. build geometries and discriminate alphanumeric information for > each one > 3. put the final information in a PostGIS DB > Great! It is always nice to see that GeoKettle is used in various countries and domains and with different types of data. > What miss? > Well, the final step will be to do an affine trasformation of geometries > by using 3 homologs points by reading a XML file like in the attachment > (the sample is for a Gauss Boaga EST output but it could be different). > I don't think it is difficult to implement a new step in GeoKettle that > does affine trasformation by using JTS. > > Could you please support Antonio in this and give him instructions to > start the development? > > Antonio, please, ask Etienne or Thierry only clear questions on what u > don't understand. > > > Thank you very much for the collaboration, help and attention! > See you soon! > OK, the best way to start is to take a look at the source code of the Geospatial steps we have developed in GeoKettle. They will provide you with valuable information in order to know how to implement a new step in GeoKettle. Please consider the different files below: o src/kettle-steps.xml : This XML file references all the steps made available in GeoKettle and their associated ressources (e.g. the image file for the icon that represents the step in the GUI). You will find in the file all the XML sections that refer to the geospatial steps (GISFileInput, GISFileOutput, SRSTransformation and SetSRS). o Source codes for these different steps are available respectively in the following directories: - src/org/pentaho/di/trans/steps/gisfileinput - src/org/pentaho/di/trans/steps/gisfileoutput - src/org/pentaho/di/trans/steps/srstransformation - src/org/pentaho/di/trans/steps/setsrs As you will see, you need to define at least 4 new classes to make your new step works. Let us imagine you want to define an AffineTransform step, you will have to define the following classes in the src/org/pentaho/di/trans/steps/affinetransform directory: o AffineTransform (must implement StepInterface): This class contains the effective code to perform the transformation. It uses the AffineTransformMeta and AffineTransformData classes, especially through the init() and run() methods. o AffineTransformMeta(must implement StepMetaInterface): Methods implemented in this class will allow the new step to talk to Kettle and access different information (fields, output steps if any, access to the repository, etc.). o AffineTransformData (must implement StepDataInterface): This class holds the data used by a thread. This allows to stop execution of threads and restart them later without loosing track of the execution state. Typically, the "Data class" will contain resultsets, temporary data, caching indexes, etc. o Messages: Methods defined in this class allow to conveniently access all text labels used in the step and stored in the property files located in the messages subdirectory (support for internationalisation). Antonio, I think these different elements provide you with a good starting point in order to initiate the coding of your step. About the XML file, I think it is an interesting approach to fetch the info about coordinates from a file. It allows a higher level of automation especially when you have to process a batch of files. Nevertheless, it will be important to translate the XML tags in English in order to make your new step easy to use by a large audience. In addition, I think the interface of the new step should propose to different ways to enter the info about the points: 1) by filling out the values in the graphical interface of the step; 2) by fetching the data from a given XML file. Hope it helps and do not hesitate to email the list back if you have further questions. Best regards, Th. -- Prof. Thierry Badard, Ph.D. ____________________________________________________________ Professeur au Département des sciences géomatiques (http://www.scg.ulaval.ca) Chercheur régulier au Centre de Recherche en Géomatique (http://www.crg.ulaval.ca) Chercheur régulier du Réseau de Centres d'Excellence GEOIDE (http://www.geoide.ulaval.ca) Chercheur collaborateur de la chaire de recherche industrielle en base de données géospatiales décisionnelles (http://mdspatialdb.chair.scg.ulaval.ca) Responsable du projet de formation sur les normes internationales en géomatique (http://standards.scg.ulaval.ca) Administrateur des projets open source : GeoKettle (http://www.geokettle.org) GeoMondrian (http://www.geo-mondrian.org) Spatialytics (http://www.spatialytics.org) GeOxygene (http://oxygene-project.sourceforge.net) Membre votant de la fondation OSGeo (http://www.osgeo.org) Département des sciences géomatiques Faculté de foresterie, de géographie et de géomatique Pavillon Louis-Jacques Casault 1055, avenue du Séminaire Local 1343 Université Laval Québec (Québec) G1V 0A6 Canada Tél.: +1.418.656-7116 - Fax: +1.418.656-7411 Courriel : Thi...@sc... Web: http://geosoa.scg.ulaval.ca ____________________________________________________________ *AVERTISSEMENT* Avis relatif à la confidentialité Notice of confidentiality Advertencia de confidencialidad http://www.rec.ulaval.ca/lce/securite/confidentialite.htm |
From: César M. I. <ces...@gm...> - 2009-07-22 12:05:40
|
Hello list, I'm César Martínez from ETC-LUSI (Barcelona), a centre which supports the European Environmental Agency in Land Use and Spatial Tools areas. Some days ago, Etienne Dubé and me crossed some interesting emails about the possibility of integrating Sextante[1] in GeoKettle. We agreed to continue the technical discussion here (in the mailing list), so that any interested developer could join this effort. I've been tidying my ideas for a while, and the result is a document[2] explaining the ways in which Sextante could be integrated in GeoKettle. Etienne confirmed me that he will be off for some weeks, so I'm aware that we'll have to wait a bit to hear his opinion. Anyway, I post the document now with the hopes that some others developers will read it and give their opinion. As I'm a newbie in GeoKettle architecture, I assume that I might be pointing to the wrong direction, so any comments or tips are welcome. If you have trouble to understand any part of the document, please tell me and I'll try my best to explain it better. Best regards, César Martínez Izquierdo [1] Sextante is a set of free geospatial analysis tools: http://sextantegis.com/ [2] Analysis of the GeoKettle-Sextante integration: https://forge.osor.eu/docman/view.php/143/249/Analysis_of_GeoKettle-Sextante_integration.odt -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - César Martínez Izquierdo GIS developer - - - - - - - - - - - - - - - - - - - - ETC-LUSI: http://etc-lusi.eionet.europa.eu/ Universitat Autònoma de Barcelona (SPAIN) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
From: Thierry B. <Thi...@sc...> - 2009-06-15 01:08:01
|
Hi all, The migration from ulaval to sourceforge servers of the geokettle-devel mailing list is now finished. So welcome on this new geokettle-devel mailing list! If you experience problems or have questions or comments relative to development tasks with GeoKettle or for feature request, please do not hesitate to use this mailing list. I hope you will enjoy GeoKettle. Best regards, Th. -- Prof. Thierry Badard, Ph.D. ____________________________________________________________ Professeur au Département des sciences géomatiques (http://www.scg.ulaval.ca) Chercheur régulier au Centre de Recherche en Géomatique (http://www.crg.ulaval.ca) Chercheur régulier du Réseau de Centres d'Excellence GEOIDE (http://www.geoide.ulaval.ca) Chercheur collaborateur de la chaire de recherche industrielle en base de données géospatiales décisionnelles (http://mdspatialdb.chair.scg.ulaval.ca) Responsable du projet de formation sur les normes internationales en géomatique (http://standards.scg.ulaval.ca) Administrateur des projets open source GeOxygene et GeoKettle (http://oxygene-project.sourceforge.net & http://www.geokettle.org) Membre votant de la fondation OSGeo (http://www.osgeo.org) Département des sciences géomatiques Faculté de foresterie, de géographie et de géomatique Pavillon Louis-Jacques Casault 1055, avenue du Séminaire Local 1343 Université Laval Québec (Québec) G1V 0A6 Canada Tél.: +1.418.656-7116 - Fax: +1.418.656-7411 Courriel : Thi...@sc... Web: http://geosoa.scg.ulaval.ca ____________________________________________________________ *AVERTISSEMENT* Avis relatif à la confidentialité Notice of confidentiality Advertencia de confidencialidad http://www.rec.ulaval.ca/lce/securite/confidentialite.htm |