strcpy(LAT,&GPSLAT[9],1);
You are copying one character into a 10 element array. Why not just use
LATI4 = GPSLAT[9];
Then,
Serial.println(LATI4);
strcpy(LAT,&GPSLAT[9],1);
You are copying one character into a 10 element array. Why not just use
LATI4 = GPSLAT[9];
Then,
Serial.println(LATI4);