-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSV/Excel upload #145
Comments
This is covered in GNIP 17 |
Leaving it open and in scope for 2.x then. |
@iwillig @ischneider @rmarianski Since the importer now supports CSV, how much effort is required to also support XLS files? |
I think we'd be able to re-use most of the front facing code from the geonode side. From the back end, I'd recommend creating just an excel file format implementation, which is much less work than creating a full datastore. It essentially amounts to parsing the format, and generating the appropriate feature type. We'd get to re-use all the same transformers too. |
@jj0hns0n , agree w/ the appraisal from @rmarianski . The question is more about what version(s) of XLS files do we want to support? This worked well for me in the past - small, easy to use (versus POI) though it only supports 2003?: POI supports 2007, IIRC, but is quite annoying to use from my recollection. Another part of the challenge with XLS, from my experience, is that unless we only support a very CSV-like layout (read the first sheet only, column headers at top, no decoration, etc.), this becomes a very open-ended task. The problem with this approach is that many people don't make spreadsheets like that, so they end up having to export or reformat anyway. My personal opinion is that export to CSV is a better option than playing the 'supported versions and formatting' game... |
For excel I think an appropriate solution would be to explain how to -a On Mon, Oct 15, 2012 at 9:50 AM, Ian Schneider [email protected]:
|
That does make most sense in the short term. Longer term, it dies make On Oct 15, 2012, at 10:03, "Ariel Núñez" [email protected] wrote: For excel I think an appropriate solution would be to explain how to -a On Mon, Oct 15, 2012 at 9:50 AM, Ian Schneider [email protected]:
— |
CSV is working with the importer uploader backend. I will test this out and close when verified to work. |
Note a limitation: planetfederal/geoserver-exts#13 |
In order to have the importer enabled, we need the DATASTORE in the settings (postgis database) and edit this line https://github.com/GeoNode/geonode/blob/master/geonode/settings.py#L424 to geonode.importer. |
Includes documentation on how to use it. |
Also see #1915 |
added slider to permalink
…eDetails Revert "Enable using online_resource for HTTPS remote services"
Galen request, based on potential user feedback, CSV/Excel upload and management, where the file would have Lat and Lon columns.
The text was updated successfully, but these errors were encountered: