From efc6bf57e5d7f91a1b220580a9db35d70a4e1628 Mon Sep 17 00:00:00 2001 From: The Google Earth Engine Community Authors Date: Wed, 20 Dec 2023 08:09:40 -0800 Subject: [PATCH] Just `Export.classifier`, not `ee.Export.classifier`. PiperOrigin-RevId: 592563606 --- samples/javascript/guides/classification03.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/javascript/guides/classification03.js b/samples/javascript/guides/classification03.js index 787906009..482d2f5de 100644 --- a/samples/javascript/guides/classification03.js +++ b/samples/javascript/guides/classification03.js @@ -172,7 +172,7 @@ print(training.size()); // [START earthengine__classification03__export_classifier] // Using the random forest classifier defined earlier, export the random // forest classifier as an Earth Engine asset. -ee.Export.classifier.toAsset( +Export.classifier.toAsset( classifier, "Saved random forest, IGBP classification", "upscaled_MCD12Q1_random_forest"