Skip to content

Commit

Permalink
small optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
mgtennant committed Feb 22, 2024
1 parent 80fe7a7 commit d74cf7d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions frontend/src/mapping/mapping.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,7 @@ export class MappingService {
const parentIJ = this.findParentGridCell(latitude, longitude);
console.log('findParentGridCell(desiredLatitude, desiredLongitude)');
console.log(parentIJ);
const rawData = Papa.parse(this.tileDomainInfo, {
header: true,
skipEmptyLines: true,
});
const rawData = this.parsedTileDomainInfo;

const parsedData = rawData.data.map((entry) => ({
i: parseInt(entry.i),
Expand Down

0 comments on commit d74cf7d

Please sign in to comment.