nasa-jpl-memex / GeoParser

Extract and Visualize location from any file
Apache License 2.0
52 stars 23 forks source link

Generate Khooshe tiles in a seperate thread #50

Closed smadha closed 8 years ago

smadha commented 8 years ago

Fetching all the coordinates from solr and transforming them to csv is taking lot of time. This can be done asynchronously to save time of main thread.

smadha commented 8 years ago

Generating csv from solr instance is taking too long. It took hours to process 2.3 million points. We need to do things incrementally so we don't repeat processing.

@chrismattmann also suggested the same.

Thanks