def test_get_crs_units_MGAZ56(self): fc = "MGAZ56_point" fc_path = os.path.join(fgdb, fc) self.assertEqual("Meter", get_crs_units(fc_path))
def test_get_crs_units_WGS84_LL(self): fc = "WGS84_point" fc_path = os.path.join(fgdb, fc) self.assertEqual("Degree", get_crs_units(fc_path))
def test_get_crs_units_WGS_1984_Web_Mercator(self): fc = "Web_Mercator_point" fc_path = os.path.join(fgdb, fc) self.assertEqual("Meter", get_crs_units(fc_path))
def test_get_crs_units_GDA94_GA_Lambert(self): fc = "GDA94_GA_Lambert_point" fc_path = os.path.join(fgdb, fc) self.assertEqual("Meter", get_crs_units(fc_path))