feat: implement geocoding evaluation scripts and enhance routing service with traffic-aware path processing

This commit is contained in:
Hamza-Ayed
2026-07-16 14:31:07 +03:00
parent 3cf87999f4
commit 3773ab56a4
20 changed files with 885 additions and 137 deletions
+3 -1
View File
@@ -19,6 +19,7 @@ import { MapRefinementService } from './map-refinement.service';
import { MapRefinementController } from './map-refinement.controller';
import { CacheModule } from '@nestjs/cache-manager';
import * as redisStore from 'cache-manager-redis-store';
import { IndexRefreshService } from './index-refresh.service';
@Module({
imports: [
@@ -47,7 +48,8 @@ import * as redisStore from 'cache-manager-redis-store';
AdminBoundariesService,
JordanResearchService,
AdministrativeLinkingService,
MapRefinementService
MapRefinementService,
IndexRefreshService
],
exports: [GeocodingService, MapRefinementService],
})