Как найти в MapInfo WGS84.PseudoMercator
Добавлено: 27 июл 2014, 19:10
Как найти в MapInfo WGS84.PseudoMercator или EPSG:3857 ?
Геоинформационные системы (ГИС) и Дистанционное зондирование Земли
https://gis-lab.info/forum/
Код: Выделить всё
print EPSGToCoordSysString$("epsg:3857")
Код: Выделить всё
CoordSys Earth Projection 10, 157, "m", 0 Bounds (-40075016.6856, -20037508.343) (40075016.6856, 20037508.343)
EPSGToCoordSysString$( ) function
Purpose
Converts a string containing a Spatial Reference System into a CoordSys clause that can be used with any MapBasic function or statement. You can call this function from the MapBasic Window in MapInfo Professional.
Syntax
EPSGToCoordSysString$( epsg_string )
epsg_string is a String describing a Spatial Reference System (SRS) for any supported coordinate systems. SRS strings are also referred to as EPSG (European Petroleum Survey Group) strings (for example, epsg:2600). For a complete list of EPSG codes used with MapInfo Professional see the MAPINFOW.PRJ file in your MapInfo Professional installation. The EPSG codes are identified by a "\p" followed by a number.
Description
The EPSGToCoordSysString$( ) is used to convert a SRS String into a CoordSys clause that can be used in any MapBasic function or statement that takes a CoordSys clause as an input.
Example
The following example sets the coordinate system of a map to Earth Projection 1, 104.
run command("Set Map " + EPSGToCoordSysString$("EPSG:4326"))