Skip to content

Commit

Permalink
Docs: Fix incorrect use of descartes without the labs (#12378)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 22ef40ece7521c88232d9e34fdcf68df2e69facd
  • Loading branch information
stephencpope authored and Descartes Labs Build committed Jan 3, 2024
1 parent c89c593 commit b008440
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions descarteslabs/core/catalog/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ def ndarray(
Whether to also return a dict of information about the rasterization
of the image, including the coordinate system WKT and geotransform matrix.
Generally only useful if you plan to upload data derived
from this image back to the Descartes catalog, or use it with GDAL.
from this image back to the Descartes Labs catalog, or use it with GDAL.
resampler : `ResampleAlgorithm`, default `ResampleAlgorithm.NEAR`
Algorithm used to interpolate pixel values when scaling and transforming
the image to its new resolution or CRS.
Expand Down Expand Up @@ -1203,7 +1203,7 @@ def _ndarray(

except NotFoundError:
raise NotFoundError(
"'{}' does not exist in the Descartes catalog".format(self.id)
"'{}' does not exist in the Descartes Labs catalog".format(self.id)
) from None
except BadRequestError as e:
msg = (
Expand Down
6 changes: 3 additions & 3 deletions descarteslabs/core/catalog/image_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def stack(
Whether to also return a list of dicts about the rasterization of
each image, including the coordinate system WKT and geotransform matrix.
Generally only useful if you plan to upload data derived from this
image back to the Descartes catalog, or use it with GDAL.
image back to the Descartes Labs catalog, or use it with GDAL.
resampler : `ResampleAlgorithm`, default `ResampleAlgorithm.NEAR`
Algorithm used to interpolate pixel values when scaling and transforming
each image to its new resolution or SRS.
Expand Down Expand Up @@ -491,7 +491,7 @@ def mosaic(
Whether to also return a dict of information about the rasterization
of the images, including the coordinate system WKT and geotransform matrix.
Generally only useful if you plan to upload data derived
from this image back to the Descartes catalog, or use it with GDAL.
from this image back to the Descartes Labs catalog, or use it with GDAL.
resampler : `ResampleAlgorithm`, default `ResampleAlgorithm.NEAR`
Algorithm used to interpolate pixel values when scaling and transforming
the image to its new resolution or SRS.
Expand Down Expand Up @@ -595,7 +595,7 @@ def mosaic(
arr, info = Raster.get_default_client().ndarray(**full_raster_args)
except NotFoundError:
raise NotFoundError(
"Some or all of these IDs don't exist in the Descartes catalog: {}".format(
"Some or all of these IDs don't exist in the Descartes Labs catalog: {}".format(
full_raster_args["inputs"]
)
)
Expand Down

0 comments on commit b008440

Please sign in to comment.