GetPointsList - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


DataSets[Builtin][WorldMap]

  

GetPointsList

  

retrieve as a list all points stored in a WorldMap object

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

GetPointsList(m)

Parameters

m

-

a WorldMap object

Description

• 

The GetPointsList command returns the list of all points stored in m.

• 

The points are sorted in the lexicographical order.

• 

If a point does not have a string label, the empty string is assigned to it as a placeholder.

Examples

> 

m≔DataSets:-Builtin:-WorldMap⁡0,0,0,−1,Ocean

m≔PLOT⁡...A map of the world with 2 pointsprojection: MillerCylindrical

(1)
> 

GetPointsList⁡m

0,−1,Ocean,0,0,

(2)
> 

AddPoints⁡m,0,1,−5,−5,somewhere

PLOT⁡...A map of the world with 4 pointsprojection: MillerCylindrical

(3)
> 

GetPointsList⁡m

−5,−5,somewhere,0,−1,Ocean,0,0,,0,1,

(4)
> 

RemovePoint⁡m,0,−1,Ocean

PLOT⁡...A map of the world with 3 pointsprojection: MillerCylindrical

(5)
> 

GetPointsList⁡m

−5,−5,somewhere,0,0,,0,1,

(6)

Compatibility

• 

The DataSets[Builtin][WorldMap][GetPointsList] command was introduced in Maple 2017.

• 

For more information on Maple 2017 changes, see Updates in Maple 2017.

See Also

AddPoint

RemovePoint

WorldMap