问题
I am trying to run a simple program that I can use as a working example for the Google Earth Engine API, however I get the above error whenever I run it. Here is the code:
import ee
import ee.mapclient
image1 = ee.Image(1);
print(image1);
As you can see it is a very simple program I just want to get it to run so I can do more advanced tasks but I can't even get this simple one to work.
回答1:
You did not authenticate your application, hence the error.
Add:
ee.Initialize()
and you're good to go.
来源:https://stackoverflow.com/questions/34939268/why-i-am-getting-the-error-server-returned-http-code-404-using-google-app-eng