|
From: Jody G. <jga...@re...> - 2006-10-04 20:50:15
|
Just looked at the code and when you do define a shapefile with
createSchema a prj file will be created:
> if (cs != null) {
> String s = cs.toWKT();
> FileWriter out = new FileWriter(getStorageFile(prjURL, temp));
>
> try {
> out.write(s);
> } finally {
> out.close();
> }
> }
Cheers,
Jody
|