Combining code issue

I seem to be having a bit of a code combining issue, i am trying to get the serial monitor to display GPS and Temp and log them on SD card. I get an error 'mySensor' was not declared in this scope. I seem to have it placed right in the code, maybe not. I am a bit of a noob to this and learning tons, so bare with me. If you could be so kind to look at the code to see what i dont and possibly went wrong. Under Void
loop It highlights, tempC = mySensor.readTemperature(); and ive tried relabeling it, but no luck.

#include <SD.h> //Load SD card library
#include<SPI.h>//Load SPI Library
#include <Adafruit_GPS.h> //Install the adafruit GPS library
#include <SoftwareSerial.h>//Load the Software Serial library
#include "Wire.h" // imports the wire library for talking over I2C
#include "Adafruit_BMP085.h" // import the Pressure Sensor Library We are using Version one of Adafruit API for this sensor

File mySensorData; //Data object you will write your sesnor data to

HardwareSerial mySerial=(Serial2);//Initialize the Hardware Serial port
Adafruit_GPS GPS(&Serial2); //Create the GPS Object

float tempC; // Variable for holding temp in C
float tempF; // Variable for holding temp in F
float pressure; //Variable for holding pressure reading

String NMEA1; //Variable for first NMEA sentence
String NMEA2; //Variable for second NMEA sentence
char c; //to read characters coming from the GPS
float deg; //Will hold positin data in simple degree format
float degWhole; //Variable for the whole part of position
float degDec;//Variable for the decimal part of degree

int chipSelect = 53; //chipSelect pin for the SD card Reader

void setup() {

Serial.begin(9600);//Turn on serial monitor
mySensor.begin();

GPS.begin(9600); //Turn on GPS at 9600 baud
GPS.sendCommand("$PGCMD,33,0*6D"); //Turn off antenna update nuisance data
GPS.sendCommand(PMTK_SET_NMEA_OUTPUT_RMCGGA); //Request RMC and GGA Sentences only
GPS.sendCommand(PMTK_SET_NMEA_UPDATE_1HZ); //Set update rate to 1 hz
delay(1000);

pinMode(10, OUTPUT); //Must declare 10 an output and reserve it to keep SD card happy
SD.begin(chipSelect); //Initialize the SD card reader

if (SD.exists("NMEA.txt")) { //Delete old data files to start fresh
SD.remove("NMEA.txt");
}
if (SD.exists("GPSData.txt")) { //Delete old data files to start fresh
SD.remove("GPSData.txt");
}

}

void loop() {
tempC = mySensor.readTemperature(); // Read Temperature from BMP180
tempF = tempC*1.8 + 32.; // Convert degrees C to F
pressure=mySensor.readPressure(); //Read Pressure

mySensorData = SD.open("PTData.txt", FILE_WRITE);
if (mySensorData) {
mySensorData.print(tempF); //write temperature data to card
mySensorData.print(","); //write a commma
mySensorData.println(pressure); //write pressure and end the line (println)
mySensorData.close();
delay(1000);
}

readGPS();

if(GPS.fix==1) { //Only save data if we have a fix
mySensorData = SD.open("NMEA.txt", FILE_WRITE); //Open file on SD card for writing
mySensorData.println(NMEA1); //Write first NMEA to SD card
mySensorData.println(NMEA2); //Write Second NMEA to SD card
mySensorData.close(); //Close the file

mySensorData = SD.open("PTData.txt", FILE_WRITE);
mySensorData = SD.open("GPSData.txt", FILE_WRITE);

degWhole=float(int(GPS.longitude/100)); //gives me the whole degree part of Longitude
degDec = (GPS.longitude - degWhole*100)/60; //give me fractional part of longitude
deg = degWhole + degDec; //Gives complete correct decimal form of Longitude degrees
if (GPS.lon=='W') { //If you are in Western Hemisphere, longitude degrees should be negative
deg= (-1)*deg;
}
mySensorData.print(deg,4); //writing decimal degree longitude value to SD card
mySensorData.print(","); //write comma to SD card

degWhole=float(int(GPS.latitude/100)); //gives me the whole degree part of latitude
degDec = (GPS.latitude - degWhole*100)/60; //give me fractional part of latitude
deg = degWhole + degDec; //Gives complete correct decimal form of latitude degrees
if (GPS.lat=='S') { //If you are in Southern hemisphere latitude should be negative
deg= (-1)*deg;
}
mySensorData.print(deg,4); //writing decimal degree longitude value to SD card
mySensorData.print(","); //write comma to SD card

mySensorData.print(GPS.altitude); //write altitude to file
mySensorData.print(" "); //format with one white space to delimit data sets

mySensorData.close();
}

}

void readGPS() {

clearGPS();
while(!GPS.newNMEAreceived()) { //Loop until you have a good NMEA sentence
c=GPS.read();
}
GPS.parse(GPS.lastNMEA()); //Parse that last good NMEA sentence
NMEA1=GPS.lastNMEA();

while(!GPS.newNMEAreceived()) { //Loop until you have a good NMEA sentence
c=GPS.read();
}
GPS.parse(GPS.lastNMEA()); //Parse that last good NMEA sentence
NMEA2=GPS.lastNMEA();

Serial.println(NMEA1);
Serial.println(NMEA2);
Serial.println("");

}

void clearGPS() { //Clear old and corrupt data from serial port
while(!GPS.newNMEAreceived()) { //Loop until you have a good NMEA sentence
c=GPS.read();
}
GPS.parse(GPS.lastNMEA()); //Parse that last good NMEA sentence

while(!GPS.newNMEAreceived()) { //Loop until you have a good NMEA sentence
c=GPS.read();
}
GPS.parse(GPS.lastNMEA()); //Parse that last good NMEA sentence
while(!GPS.newNMEAreceived()) { //Loop until you have a good NMEA sentence
c=GPS.read();
}
GPS.parse(GPS.lastNMEA()); //Parse that last good NMEA sentence

}

Please modify your post and use the code button </> so your code looks like this and is easy to copy to a text editor. See How to use the Forum Your code is too long to study quickly without copying to a text editor.

You may get some ideas from this Simple Merge Demo

...R

Your first error is probably here:

void setup() {
 
  Serial.begin(9600);//Turn on serial monitor
  mySensor.begin();   //initialize pressure sensor mySensor

You have noy declared a variable mySensor; I can only find a mySensorData (type FILE).

Ooops! I forgot to set my code button on this posr. Sorry if it's too long. That's what I thought too Sterretje. I'll try fixing that and if it works. Again, I'm sorry for not displaying my post properly. Thank you for looking at it.

Groomlake:
Ooops! I forgot to set my code button on this posr.

You can always edit that post you know to add the code tags.

float degWhole; //Variable for the whole part of position

So, the whole part might be 14.7?