Ejemplo n.º 1
0
        public ConvertENtoLatLongUk(ICsvParser csvParser,
                                    IFileHelper fileHelper,
                                    IGeoUKHelper geoUKHelper,
                                    ILocationLatLngMethods postcodeZipLatLongMethods)
        {
            _csvParser   = csvParser;
            _fileHelper  = fileHelper;
            _geoUKHelper = geoUKHelper;
            _postcodeZipLatLongMethods = postcodeZipLatLongMethods;


            slnPath             = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location).Replace(@"Demo\bin\Debug\netcoreapp3.1", "");
            ukRawDataFolder     = Path.Combine(slnPath, @"CoreLookup\Data\UK\CodePointOpen2020\Data\CSV");
            ukLatLongDataFolder = Path.Combine(slnPath, @"CoreLookup\Data\UK\CodePointOpen2020\Data_Processed_LatLong");
        }
Ejemplo n.º 2
0
 public ProcessedUkData(ILocationLatLngMethods postcodeZipLatLongMethods)
 {
     _postcodeZipLatLongMethods = postcodeZipLatLongMethods;
 }
Ejemplo n.º 3
0
 public GeneraliseUkPostcodes(ILocationLatLngMethods postcodeZipLatLongMethods)
 {
     _postcodeZipLatLongMethods = postcodeZipLatLongMethods;
 }