Run SeeedStudio GPS Air530

hello, I have the Air530 GPS sensor and I can’t find a code base to simply retrieve the longitude and latitude of the sensor.do you know where I can find a working sample code to display this information on the serial console?

There are serveral GPS libraries available. If you are using Arduino checkout the “TinyGPSPlus” and “Adafruit GPS” libraries. You can check the examples and pull the parts you need.
https://github.com/mikalhart/TinyGPSPlus/tree/master

https://github.com/adafruit/Adafruit_GPS

These differ in how they get data to the NMEA message processing core- TinyGPS expects the user to do the read and send the data to the core, while the AdafruitGPS is passed the serial device and pulls data itself.

This is a Wiki from seeed about the Air530 GPS sensor. You can have a look.

I hope this is helpful