ngachung commented on code in PR #79:
URL:
https://github.com/apache/incubator-sdap-ingester/pull/79#discussion_r1344486165
##########
granule_ingester/granule_ingester/writers/SolrStore.py:
##########
@@ -184,7 +184,8 @@ def _build_solr_doc(self, tile: NexusTile) -> Dict:
'tile_max_lon': bbox.lon_max,
'tile_min_lat': bbox.lat_min,
'tile_max_lat': bbox.lat_max,
- 'tile_depth': tile_data.depth,
+ 'tile_min_elevation': tile_data.min_elevation,
+ 'tile_max_elevation': tile_data.max_elevation,
Review Comment:
One potential problem is that for existing SDAP deployments the
create-collection script isn't ran. If we use dynamically typed fields then
existing deployments don't need to manually define these fields.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]