I just installed the mapping toolbox In running the example referenceSphere can not resolve superclass map.geodesy.Sphere.
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Paul Martellock
le 28 Juil 2021
Commenté : Kojiro Saito
le 23 Août 2021
I get the following error running the example code:
>> worldmap world
Error using referenceSphere
The specified superclass 'map.geodesy.Sphere' contains a parse error, cannot be found on MATLAB's search path, or
is shadowed by another file with the same name.
Error in regionmap (line 51)
e = referenceSphere('earth','meters');
Error in worldmap (line 122)
ax = regionmap(mfilename, varargin);
MATLAB Version: 9.8.0.1323502 (R2020a)
MATLAB License Number: 874794
Operating System: Microsoft Windows 10 Enterprise Version 10.0 (Build 19042)
Java Version: Java 1.8.0_202-b08 with Oracle Corporation Java HotSpot(TM) 64-Bit Server VM mixed mode
-----------------------------------------------------------------------------------------------------
MATLAB Version 9.8 (R2020a)
Antenna Toolbox Version 4.2 (R2020a)
Mapping Toolbox Version 4.10 (R2020a)
Signal Processing Toolbox Version 8.4 (R2020a)
2 commentaires
Steven Lord
le 28 Juil 2021
Can you show us what the following commands display?
which -all worldmap
which -all regionmap
which -all referenceSphere
which -all map.geodesy.Sphere
Réponse acceptée
Kojiro Saito
le 5 Août 2021
In R2020a,
which -all map.geodesy.Sphere
will return the following file.
MATLAB_INSTALL\toolbox\shared\mapgeodesy\+map\+geodesy\Sphere.m % map.geodesy.Sphere constructor
toolbox\shared\mapgeodesy folder is created when Mapping Toolbox is installed.
Please confirm toolbox\shared\mapgeodesy\+map\+geodesy\Sphere.m does exist, if it exists, it seems the foloder was removed fomr MATLAB search paht.
So, you will need to do addpath
addpath('C:\Program Files\MATLAB\R2020a\toolbox\shared\mapgeodesy')
savepath
Or reset MATLAB search path to the initial conditions.
restoredefaultpath
If toolbox\shared\mapgeodesy folder does not exist, there might something wrong in your installation. So you need to install Mapping Toolbox again.
2 commentaires
Kojiro Saito
le 23 Août 2021
Thank you for your feedback. I would appreciate if you can accept my answer.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!