ngachung commented on code in PR #79:
URL:
https://github.com/apache/incubator-sdap-ingester/pull/79#discussion_r1344452426
##########
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:
@RKuttruff By naming the solr fields tile_min_elevation and
tile_max_elevation, would we need to explicitly define them in
https://github.com/apache/incubator-sdap-nexus/blob/master/docker/solr/cloud-init/create-collection.py#L140-L144
? Or should we use dynamically typed fields e.g. tile_min_elevation_d and
tile_max_elevation_d
--
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]