---
title: "checkValidCartesian3()"
canonical: "https://onesaitplatform.refined.site/space/DOCT/2220800706/checkValidCartesian3()"
format: markdown
---
> ℹ️ **Information**
> ℹ️ 
> ℹ️ Implementation version: beta 1.09

# Description

Check that an object corresponds to Cartesian coordinate values. If so, it will return a 'true'; and if not, a 'false'.

# Invocation

```javascript
checkValidCartesian3(coordinates)
```

# Input parameters

## coordinates

The object with Cartesian coordinates, following the schema: { x: 0.0, y: 0.0, z: 0.0 }

# Use examples

Check a given coordinate:

```javascript
checkValidCartesian3(
	{
		x: 4901985.674044613,
	 	y: -547412.8237694515, 
	 	z: 4034862.719291694
	}
)
```

![image](media://faf14f31-6ec8-41e3-9d70-9e2d106e8723)