I am very new to Python and have a similar challenge.
I have a point feature class with about 8,500 records that is in WGS84. The feature class already has 6 fields (data type = double, format = Decimal Degrees) created to calculate the longitude and latitude in 3 different coordinate systems (WGS84_Longitude, WGS84_Latitude, NAD83_Longitude, NAD83_Latitude, NAD27_Longitude, and NAD27_Latitude). I am currently manually doing this in an ArcMap edit session, calculating the geometry using the dataframe's coordinate system, however I would like to automate the process and schedule it to run at a predetermined frequency.
I need to write a python script that will calculate the 6 fields using the correct coordinate system and a predetermined datum transformation. Can this be done?