├── LICENSE ├── ReadMe.md ├── distribution ├── docker-agent │ ├── Dockerfile │ ├── build.sh │ ├── pip.conf │ ├── readme.txt │ ├── sources.list.16.04 │ └── sources.list.16.04.tsinghua ├── docker-doc │ ├── Dockerfile │ ├── build.sh │ └── readme.txt ├── docker-jupyterhub │ ├── Dockerfile │ ├── build.sh │ ├── iclientpy.jupyterhub.ext-9.0.0-py3-none-any.whl │ ├── jupyterhub_config.py │ ├── jupyterhubextsrc │ │ ├── .gitignore │ │ ├── MANIFEST.in │ │ ├── iclientpyjupyterhubext │ │ │ ├── __init__.py │ │ │ ├── _version.py │ │ │ ├── cull_idle_servers.py │ │ │ └── suauthenticator.py │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ └── setup.py │ ├── pip.conf │ └── supermap_logo.png ├── docker │ ├── Dockerfile │ ├── build.sh │ ├── custom │ │ ├── custom.css │ │ └── supermap_logo.png │ └── pip.conf ├── logo.png └── upgrade │ ├── doc │ ├── docker-compose.yml │ ├── rancher.conf │ ├── start.sh │ └── upgrade.sh │ ├── hub │ ├── docker-compose.yml │ ├── rancher.conf │ ├── start.sh │ └── upgrade.sh │ └── readme.md └── iclientpy ├── .gitignore ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── conda ├── build.py └── iclientpy │ ├── meta.yaml │ ├── post-link.bat │ ├── post-link.sh │ ├── pre-unlink.bat │ └── pre-unlink.sh ├── doc ├── Makefile ├── make.bat ├── makedoc.py ├── requirements.txt └── source │ ├── _static │ ├── anaconda_advance.png │ ├── anaconda_finish.png │ ├── anaconda_init.png │ ├── anaconda_path.png │ ├── anaconda_user.png │ ├── anaconda_vscode.png │ ├── codingui_aggregate_region.gif │ ├── geolines.png │ ├── heat.png │ ├── hellopython │ │ ├── deltmp.jpg │ │ ├── dir.jpg │ │ ├── dir_to_var.jpg │ │ └── invoke_deltmp.jpg │ ├── honeycomb.png │ ├── ranksymbol.png │ ├── sample.png │ └── supermap-logo.png │ ├── _templates │ └── readme.txt │ ├── bigdata.rst │ ├── conf.py │ ├── content.rst │ ├── faq.rst │ ├── geticlientpy.rst │ ├── geticlientpysourcecode.rst │ ├── guide.rst │ ├── hellopython.rst │ ├── importgeodataframe.rst │ ├── index.rst │ ├── installanacondaicpy.rst │ ├── jupyter.rst │ ├── publishservice.rst │ ├── restapi.rst │ ├── sample │ ├── sample-csv.nblink │ ├── sample-geolines-stats.nblink │ ├── sample-geolines.nblink │ ├── sample-heat.nblink │ ├── sample-honeycomb.nblink │ └── sample.nblink │ └── tool.rst ├── iclientpy ├── __init__.py ├── _version.py ├── codingui │ ├── __init__.py │ ├── _serviceuiregister.py │ ├── comon.py │ ├── distributedanalyst │ │ ├── __init__.py │ │ ├── _aggregate.py │ │ ├── _common.py │ │ ├── _datacatalog.py │ │ └── _runningjob.py │ ├── servicepublish │ │ ├── __init__.py │ │ └── remotefilebrowser.py │ └── servicespage.py ├── data │ ├── __init__.py │ ├── featuresconverter.py │ └── portal.py ├── dtojson │ └── __init__.py ├── env │ └── __init__.py ├── jupyter │ ├── __init__.py │ ├── chinageojson.json │ ├── units.py │ └── widgets │ │ ├── __init__.py │ │ ├── basesetting.py │ │ ├── cloudtilelayer.py │ │ ├── echartslayer.py │ │ ├── heatlayer.py │ │ ├── mapview.py │ │ ├── mapvlayer.py │ │ ├── portalthumbnail.py │ │ ├── ranksymbolthemelayer.py │ │ ├── sparkjobstate.py │ │ └── tilemaplayer.py ├── locales │ ├── __init__.py │ ├── conf.py │ ├── iclientpy.py │ ├── iclientpy_en.py │ └── iclientpy_zh.py ├── notebook │ ├── __init__.py │ ├── online_template.ipynb │ ├── server_template.ipynb │ ├── start_iclientpy.py │ ├── start_online.py │ └── start_server.py ├── online.py ├── portal.py ├── rest │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── _modeljsonutil.py │ │ ├── abstracttypefields.py │ │ ├── cache.py │ │ ├── cacheutils.py │ │ ├── datacatalog.py │ │ ├── datasservice.py │ │ ├── distributedanalyst.py │ │ ├── groupsservice.py │ │ ├── management.py │ │ ├── mapsservice.py │ │ ├── model.py │ │ ├── mydepartments.py │ │ ├── node_service.py │ │ ├── onlinedatasservice.py │ │ ├── onlinemapsservice.py │ │ ├── restdata.py │ │ ├── restmap.py │ │ ├── securitymanagement.py │ │ ├── securityservice.py │ │ ├── servicespage.py │ │ └── updatetileset.py │ ├── apifactory.py │ ├── cmd │ │ ├── __init__.py │ │ ├── imgrwxreceiver.py │ │ ├── initserver.py │ │ ├── obaintoken.py │ │ ├── updatecache.py │ │ └── wxreceiver │ │ │ ├── WXBizMsgCrypt.py │ │ │ ├── __init__.py │ │ │ ├── ierror.py │ │ │ └── server.py │ ├── decorator.py │ └── proxyfactory.py ├── sample │ ├── first_notebook.ipynb │ └── sample │ │ ├── data.json │ │ ├── mapvdata.csv │ │ ├── province.csv │ │ ├── sample-csv.ipynb │ │ ├── sample-geolines-stats.ipynb │ │ ├── sample-geolines.ipynb │ │ ├── sample-geopandas-portal.ipynb │ │ ├── sample-geopandas.ipynb │ │ ├── sample-heat.ipynb │ │ ├── sample-honeycomb.ipynb │ │ ├── sample-online.ipynb │ │ ├── sample-portal.ipynb │ │ └── sample.ipynb ├── server.py ├── typeassert.py └── viz │ ├── __init__.py │ ├── abstractmap.py │ ├── geolines.py │ ├── heatmap.py │ ├── mapvmap.py │ └── ranksymbolthememap.py ├── icpy.spec ├── js ├── README.md ├── ddl.config.js ├── package.json ├── src │ ├── embed.js │ ├── extension.js │ ├── iclient.js │ └── index.js └── webpack.config.js ├── requirements.txt ├── scripts ├── build.bat ├── build.sh ├── buildjslib.bat ├── buildjslib.sh ├── install.bat └── uninstall.bat ├── setup.cfg ├── setup.py ├── test ├── __init__.py ├── data │ ├── __init__.py │ ├── data.json │ ├── test_featureconverter.py │ └── test_portal.py ├── distributedanalyst │ ├── __init__.py │ ├── test_aggregatepointsjobbuilder.py │ └── test_getdatas.py ├── dtojson │ ├── __init__.py │ └── test_dtojson.py ├── env │ ├── __init__.py │ └── test_profile.py ├── jupyter │ ├── __init__.py │ ├── debug.py │ ├── test_units.py │ └── widgets │ │ ├── __init__.py │ │ ├── test_basesettings.py │ │ ├── test_cloudtilelayer.py │ │ ├── test_echartslayer.py │ │ ├── test_heatlayer.py │ │ ├── test_mapview.py │ │ ├── test_mapvlayer.py │ │ ├── test_portalthumbnail.py │ │ ├── test_ranksymbolthemelayer.py │ │ ├── test_sparkjobstate.py │ │ └── test_tilemaplayer.py ├── locales │ ├── __init__.py │ └── test_locales.py ├── rest │ ├── __init__.py │ ├── api │ │ ├── World.zip │ │ ├── __init__.py │ │ ├── abstractrest.py │ │ ├── test_apifactory.py │ │ ├── test_cache.py │ │ ├── test_cacheutils.py │ │ ├── test_custom_deserializer.py │ │ ├── test_datacatalog.py │ │ ├── test_datasservice.py │ │ ├── test_groups.py │ │ ├── test_management.py │ │ ├── test_maps.py │ │ ├── test_model.py │ │ ├── test_mydepartments.py │ │ ├── test_node_service.py │ │ ├── test_onlinedatasservice.py │ │ ├── test_onlinemapsservice.py │ │ ├── test_restdata.py │ │ ├── test_restmap.py │ │ ├── test_securitymanagement.py │ │ ├── test_securityservice.py │ │ ├── test_spatialanalyst.py │ │ └── test_updatesmtilestileset.py │ ├── cmd │ │ ├── __init__.py │ │ ├── test_MsgHandler.py │ │ ├── test_initserver.py │ │ ├── test_obaintoken.py │ │ ├── test_updatecache.py │ │ └── wxreceiver │ │ │ ├── __init__.py │ │ │ └── test_WXHookReceiver.py │ ├── test_REST.py │ └── test_proxyfactory.py ├── serveruser.csv ├── test_common.py ├── test_online.py ├── test_portal.py ├── test_server.py ├── test_typeassert.py ├── viz │ ├── __init__.py │ ├── common.py │ ├── test_abstractmap.py │ ├── test_decoratormap.py │ ├── test_geolinesmap.py │ ├── test_heatmap.py │ ├── test_init.py │ ├── test_mapvmap.py │ └── test_ranksymbolthememap.py └── workspace_publish │ ├── __init__.py │ └── test_workspacepublish.py └── tool └── buildtool.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/ReadMe.md -------------------------------------------------------------------------------- /distribution/docker-agent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-agent/Dockerfile -------------------------------------------------------------------------------- /distribution/docker-agent/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -e 2 | docker build -t supermap/iclientpy-teamcity-agent:20180606 . -------------------------------------------------------------------------------- /distribution/docker-agent/pip.conf: -------------------------------------------------------------------------------- 1 | [global] 2 | index-url=https://pypi.doubanio.com/simple/ 3 | -------------------------------------------------------------------------------- /distribution/docker-agent/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-agent/readme.txt -------------------------------------------------------------------------------- /distribution/docker-agent/sources.list.16.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-agent/sources.list.16.04 -------------------------------------------------------------------------------- /distribution/docker-agent/sources.list.16.04.tsinghua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-agent/sources.list.16.04.tsinghua -------------------------------------------------------------------------------- /distribution/docker-doc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-doc/Dockerfile -------------------------------------------------------------------------------- /distribution/docker-doc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-doc/build.sh -------------------------------------------------------------------------------- /distribution/docker-doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-doc/readme.txt -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-jupyterhub/Dockerfile -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-jupyterhub/build.sh -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/iclientpy.jupyterhub.ext-9.0.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-jupyterhub/iclientpy.jupyterhub.ext-9.0.0-py3-none-any.whl -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/jupyterhub_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-jupyterhub/jupyterhub_config.py -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/jupyterhubextsrc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-jupyterhub/jupyterhubextsrc/.gitignore -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/jupyterhubextsrc/MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/jupyterhubextsrc/iclientpyjupyterhubext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/jupyterhubextsrc/iclientpyjupyterhubext/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-jupyterhub/jupyterhubextsrc/iclientpyjupyterhubext/_version.py -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/jupyterhubextsrc/iclientpyjupyterhubext/cull_idle_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-jupyterhub/jupyterhubextsrc/iclientpyjupyterhubext/cull_idle_servers.py -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/jupyterhubextsrc/iclientpyjupyterhubext/suauthenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-jupyterhub/jupyterhubextsrc/iclientpyjupyterhubext/suauthenticator.py -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/jupyterhubextsrc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-jupyterhub/jupyterhubextsrc/requirements.txt -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/jupyterhubextsrc/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=0 3 | -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/jupyterhubextsrc/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-jupyterhub/jupyterhubextsrc/setup.py -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/pip.conf: -------------------------------------------------------------------------------- 1 | [global] 2 | index-url=https://pypi.doubanio.com/simple/ 3 | -------------------------------------------------------------------------------- /distribution/docker-jupyterhub/supermap_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker-jupyterhub/supermap_logo.png -------------------------------------------------------------------------------- /distribution/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker/Dockerfile -------------------------------------------------------------------------------- /distribution/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker/build.sh -------------------------------------------------------------------------------- /distribution/docker/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker/custom/custom.css -------------------------------------------------------------------------------- /distribution/docker/custom/supermap_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/docker/custom/supermap_logo.png -------------------------------------------------------------------------------- /distribution/docker/pip.conf: -------------------------------------------------------------------------------- 1 | [global] 2 | index-url=https://pypi.doubanio.com/simple/ 3 | -------------------------------------------------------------------------------- /distribution/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/logo.png -------------------------------------------------------------------------------- /distribution/upgrade/doc/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/upgrade/doc/docker-compose.yml -------------------------------------------------------------------------------- /distribution/upgrade/doc/rancher.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/upgrade/doc/rancher.conf -------------------------------------------------------------------------------- /distribution/upgrade/doc/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/upgrade/doc/start.sh -------------------------------------------------------------------------------- /distribution/upgrade/doc/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/upgrade/doc/upgrade.sh -------------------------------------------------------------------------------- /distribution/upgrade/hub/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/upgrade/hub/docker-compose.yml -------------------------------------------------------------------------------- /distribution/upgrade/hub/rancher.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/upgrade/hub/rancher.conf -------------------------------------------------------------------------------- /distribution/upgrade/hub/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/upgrade/hub/start.sh -------------------------------------------------------------------------------- /distribution/upgrade/hub/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/upgrade/hub/upgrade.sh -------------------------------------------------------------------------------- /distribution/upgrade/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/distribution/upgrade/readme.md -------------------------------------------------------------------------------- /iclientpy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/.gitignore -------------------------------------------------------------------------------- /iclientpy/MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include iclientpy/static *.* 2 | -------------------------------------------------------------------------------- /iclientpy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/README.md -------------------------------------------------------------------------------- /iclientpy/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/RELEASE.md -------------------------------------------------------------------------------- /iclientpy/conda/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/conda/build.py -------------------------------------------------------------------------------- /iclientpy/conda/iclientpy/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/conda/iclientpy/meta.yaml -------------------------------------------------------------------------------- /iclientpy/conda/iclientpy/post-link.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/conda/iclientpy/post-link.bat -------------------------------------------------------------------------------- /iclientpy/conda/iclientpy/post-link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/conda/iclientpy/post-link.sh -------------------------------------------------------------------------------- /iclientpy/conda/iclientpy/pre-unlink.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/conda/iclientpy/pre-unlink.bat -------------------------------------------------------------------------------- /iclientpy/conda/iclientpy/pre-unlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/conda/iclientpy/pre-unlink.sh -------------------------------------------------------------------------------- /iclientpy/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/Makefile -------------------------------------------------------------------------------- /iclientpy/doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/make.bat -------------------------------------------------------------------------------- /iclientpy/doc/makedoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/makedoc.py -------------------------------------------------------------------------------- /iclientpy/doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/requirements.txt -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/anaconda_advance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/anaconda_advance.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/anaconda_finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/anaconda_finish.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/anaconda_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/anaconda_init.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/anaconda_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/anaconda_path.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/anaconda_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/anaconda_user.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/anaconda_vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/anaconda_vscode.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/codingui_aggregate_region.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/codingui_aggregate_region.gif -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/geolines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/geolines.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/heat.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/hellopython/deltmp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/hellopython/deltmp.jpg -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/hellopython/dir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/hellopython/dir.jpg -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/hellopython/dir_to_var.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/hellopython/dir_to_var.jpg -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/hellopython/invoke_deltmp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/hellopython/invoke_deltmp.jpg -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/honeycomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/honeycomb.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/ranksymbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/ranksymbol.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/sample.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_static/supermap-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/_static/supermap-logo.png -------------------------------------------------------------------------------- /iclientpy/doc/source/_templates/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/doc/source/bigdata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/bigdata.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/conf.py -------------------------------------------------------------------------------- /iclientpy/doc/source/content.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/content.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/faq.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/geticlientpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/geticlientpy.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/geticlientpysourcecode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/geticlientpysourcecode.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/guide.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/hellopython.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/hellopython.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/importgeodataframe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/importgeodataframe.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/index.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/installanacondaicpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/installanacondaicpy.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/jupyter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/jupyter.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/publishservice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/publishservice.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/restapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/restapi.rst -------------------------------------------------------------------------------- /iclientpy/doc/source/sample/sample-csv.nblink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/sample/sample-csv.nblink -------------------------------------------------------------------------------- /iclientpy/doc/source/sample/sample-geolines-stats.nblink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/sample/sample-geolines-stats.nblink -------------------------------------------------------------------------------- /iclientpy/doc/source/sample/sample-geolines.nblink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/sample/sample-geolines.nblink -------------------------------------------------------------------------------- /iclientpy/doc/source/sample/sample-heat.nblink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/sample/sample-heat.nblink -------------------------------------------------------------------------------- /iclientpy/doc/source/sample/sample-honeycomb.nblink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/sample/sample-honeycomb.nblink -------------------------------------------------------------------------------- /iclientpy/doc/source/sample/sample.nblink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/sample/sample.nblink -------------------------------------------------------------------------------- /iclientpy/doc/source/tool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/doc/source/tool.rst -------------------------------------------------------------------------------- /iclientpy/iclientpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/__init__.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/_version.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/codingui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/iclientpy/codingui/_serviceuiregister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/codingui/_serviceuiregister.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/codingui/comon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/codingui/comon.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/codingui/distributedanalyst/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/codingui/distributedanalyst/__init__.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/codingui/distributedanalyst/_aggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/codingui/distributedanalyst/_aggregate.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/codingui/distributedanalyst/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/codingui/distributedanalyst/_common.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/codingui/distributedanalyst/_datacatalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/codingui/distributedanalyst/_datacatalog.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/codingui/distributedanalyst/_runningjob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/codingui/distributedanalyst/_runningjob.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/codingui/servicepublish/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/codingui/servicepublish/__init__.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/codingui/servicepublish/remotefilebrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/codingui/servicepublish/remotefilebrowser.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/codingui/servicespage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/codingui/servicespage.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/iclientpy/data/featuresconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/data/featuresconverter.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/data/portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/data/portal.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/dtojson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/dtojson/__init__.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/env/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/env/__init__.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/__init__.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/chinageojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/chinageojson.json -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/units.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/widgets/__init__.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/widgets/basesetting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/widgets/basesetting.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/widgets/cloudtilelayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/widgets/cloudtilelayer.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/widgets/echartslayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/widgets/echartslayer.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/widgets/heatlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/widgets/heatlayer.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/widgets/mapview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/widgets/mapview.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/widgets/mapvlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/widgets/mapvlayer.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/widgets/portalthumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/widgets/portalthumbnail.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/widgets/ranksymbolthemelayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/widgets/ranksymbolthemelayer.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/widgets/sparkjobstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/widgets/sparkjobstate.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/jupyter/widgets/tilemaplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/jupyter/widgets/tilemaplayer.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/locales/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/locales/__init__.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/locales/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/locales/conf.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/locales/iclientpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/locales/iclientpy.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/locales/iclientpy_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/locales/iclientpy_en.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/locales/iclientpy_zh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/locales/iclientpy_zh.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/notebook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/iclientpy/notebook/online_template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/notebook/online_template.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/notebook/server_template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/notebook/server_template.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/notebook/start_iclientpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/notebook/start_iclientpy.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/notebook/start_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/notebook/start_online.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/notebook/start_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/notebook/start_server.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/online.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/portal.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/__init__.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/_modeljsonutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/_modeljsonutil.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/abstracttypefields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/abstracttypefields.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/cache.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/cacheutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/cacheutils.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/datacatalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/datacatalog.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/datasservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/datasservice.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/distributedanalyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/distributedanalyst.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/groupsservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/groupsservice.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/management.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/mapsservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/mapsservice.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/model.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/mydepartments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/mydepartments.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/node_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/node_service.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/onlinedatasservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/onlinedatasservice.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/onlinemapsservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/onlinemapsservice.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/restdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/restdata.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/restmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/restmap.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/securitymanagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/securitymanagement.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/securityservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/securityservice.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/servicespage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/servicespage.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/api/updatetileset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/api/updatetileset.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/apifactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/apifactory.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/cmd/imgrwxreceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/cmd/imgrwxreceiver.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/cmd/initserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/cmd/initserver.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/cmd/obaintoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/cmd/obaintoken.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/cmd/updatecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/cmd/updatecache.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/cmd/wxreceiver/WXBizMsgCrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/cmd/wxreceiver/WXBizMsgCrypt.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/cmd/wxreceiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/cmd/wxreceiver/ierror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/cmd/wxreceiver/ierror.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/cmd/wxreceiver/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/cmd/wxreceiver/server.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/decorator.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/rest/proxyfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/rest/proxyfactory.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/first_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/first_notebook.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/data.json -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/mapvdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/mapvdata.csv -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/province.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/province.csv -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/sample-csv.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/sample-csv.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/sample-geolines-stats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/sample-geolines-stats.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/sample-geolines.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/sample-geolines.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/sample-geopandas-portal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/sample-geopandas-portal.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/sample-geopandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/sample-geopandas.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/sample-heat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/sample-heat.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/sample-honeycomb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/sample-honeycomb.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/sample-online.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/sample-online.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/sample-portal.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/sample-portal.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/sample/sample/sample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/sample/sample/sample.ipynb -------------------------------------------------------------------------------- /iclientpy/iclientpy/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/server.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/typeassert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/typeassert.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/viz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/viz/__init__.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/viz/abstractmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/viz/abstractmap.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/viz/geolines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/viz/geolines.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/viz/heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/viz/heatmap.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/viz/mapvmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/viz/mapvmap.py -------------------------------------------------------------------------------- /iclientpy/iclientpy/viz/ranksymbolthememap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/iclientpy/viz/ranksymbolthememap.py -------------------------------------------------------------------------------- /iclientpy/icpy.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/icpy.spec -------------------------------------------------------------------------------- /iclientpy/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/js/README.md -------------------------------------------------------------------------------- /iclientpy/js/ddl.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/js/ddl.config.js -------------------------------------------------------------------------------- /iclientpy/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/js/package.json -------------------------------------------------------------------------------- /iclientpy/js/src/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/js/src/embed.js -------------------------------------------------------------------------------- /iclientpy/js/src/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/js/src/extension.js -------------------------------------------------------------------------------- /iclientpy/js/src/iclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/js/src/iclient.js -------------------------------------------------------------------------------- /iclientpy/js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/js/src/index.js -------------------------------------------------------------------------------- /iclientpy/js/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/js/webpack.config.js -------------------------------------------------------------------------------- /iclientpy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/requirements.txt -------------------------------------------------------------------------------- /iclientpy/scripts/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/scripts/build.bat -------------------------------------------------------------------------------- /iclientpy/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/scripts/build.sh -------------------------------------------------------------------------------- /iclientpy/scripts/buildjslib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/scripts/buildjslib.bat -------------------------------------------------------------------------------- /iclientpy/scripts/buildjslib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/scripts/buildjslib.sh -------------------------------------------------------------------------------- /iclientpy/scripts/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/scripts/install.bat -------------------------------------------------------------------------------- /iclientpy/scripts/uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/scripts/uninstall.bat -------------------------------------------------------------------------------- /iclientpy/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=0 3 | -------------------------------------------------------------------------------- /iclientpy/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/setup.py -------------------------------------------------------------------------------- /iclientpy/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/data/data.json -------------------------------------------------------------------------------- /iclientpy/test/data/test_featureconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/data/test_featureconverter.py -------------------------------------------------------------------------------- /iclientpy/test/data/test_portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/data/test_portal.py -------------------------------------------------------------------------------- /iclientpy/test/distributedanalyst/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/distributedanalyst/test_aggregatepointsjobbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/distributedanalyst/test_aggregatepointsjobbuilder.py -------------------------------------------------------------------------------- /iclientpy/test/distributedanalyst/test_getdatas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/distributedanalyst/test_getdatas.py -------------------------------------------------------------------------------- /iclientpy/test/dtojson/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/dtojson/test_dtojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/dtojson/test_dtojson.py -------------------------------------------------------------------------------- /iclientpy/test/env/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/env/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/env/test_profile.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/jupyter/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/debug.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/test_units.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/jupyter/widgets/test_basesettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/widgets/test_basesettings.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/widgets/test_cloudtilelayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/widgets/test_cloudtilelayer.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/widgets/test_echartslayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/widgets/test_echartslayer.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/widgets/test_heatlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/widgets/test_heatlayer.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/widgets/test_mapview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/widgets/test_mapview.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/widgets/test_mapvlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/widgets/test_mapvlayer.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/widgets/test_portalthumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/widgets/test_portalthumbnail.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/widgets/test_ranksymbolthemelayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/widgets/test_ranksymbolthemelayer.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/widgets/test_sparkjobstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/widgets/test_sparkjobstate.py -------------------------------------------------------------------------------- /iclientpy/test/jupyter/widgets/test_tilemaplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/jupyter/widgets/test_tilemaplayer.py -------------------------------------------------------------------------------- /iclientpy/test/locales/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/locales/test_locales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/locales/test_locales.py -------------------------------------------------------------------------------- /iclientpy/test/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/rest/api/World.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/World.zip -------------------------------------------------------------------------------- /iclientpy/test/rest/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/rest/api/abstractrest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/abstractrest.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_apifactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_apifactory.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_cache.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_cacheutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_cacheutils.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_custom_deserializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_custom_deserializer.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_datacatalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_datacatalog.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_datasservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_datasservice.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_groups.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_management.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_maps.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_model.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_mydepartments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_mydepartments.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_node_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_node_service.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_onlinedatasservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_onlinedatasservice.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_onlinemapsservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_onlinemapsservice.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_restdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_restdata.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_restmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_restmap.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_securitymanagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_securitymanagement.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_securityservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_securityservice.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_spatialanalyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_spatialanalyst.py -------------------------------------------------------------------------------- /iclientpy/test/rest/api/test_updatesmtilestileset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/api/test_updatesmtilestileset.py -------------------------------------------------------------------------------- /iclientpy/test/rest/cmd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/rest/cmd/test_MsgHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/cmd/test_MsgHandler.py -------------------------------------------------------------------------------- /iclientpy/test/rest/cmd/test_initserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/cmd/test_initserver.py -------------------------------------------------------------------------------- /iclientpy/test/rest/cmd/test_obaintoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/cmd/test_obaintoken.py -------------------------------------------------------------------------------- /iclientpy/test/rest/cmd/test_updatecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/cmd/test_updatecache.py -------------------------------------------------------------------------------- /iclientpy/test/rest/cmd/wxreceiver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/rest/cmd/wxreceiver/test_WXHookReceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/cmd/wxreceiver/test_WXHookReceiver.py -------------------------------------------------------------------------------- /iclientpy/test/rest/test_REST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/test_REST.py -------------------------------------------------------------------------------- /iclientpy/test/rest/test_proxyfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/rest/test_proxyfactory.py -------------------------------------------------------------------------------- /iclientpy/test/serveruser.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/serveruser.csv -------------------------------------------------------------------------------- /iclientpy/test/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/test_common.py -------------------------------------------------------------------------------- /iclientpy/test/test_online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/test_online.py -------------------------------------------------------------------------------- /iclientpy/test/test_portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/test_portal.py -------------------------------------------------------------------------------- /iclientpy/test/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/test_server.py -------------------------------------------------------------------------------- /iclientpy/test/test_typeassert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/test_typeassert.py -------------------------------------------------------------------------------- /iclientpy/test/viz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/viz/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/viz/common.py -------------------------------------------------------------------------------- /iclientpy/test/viz/test_abstractmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/viz/test_abstractmap.py -------------------------------------------------------------------------------- /iclientpy/test/viz/test_decoratormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/viz/test_decoratormap.py -------------------------------------------------------------------------------- /iclientpy/test/viz/test_geolinesmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/viz/test_geolinesmap.py -------------------------------------------------------------------------------- /iclientpy/test/viz/test_heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/viz/test_heatmap.py -------------------------------------------------------------------------------- /iclientpy/test/viz/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/viz/test_init.py -------------------------------------------------------------------------------- /iclientpy/test/viz/test_mapvmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/viz/test_mapvmap.py -------------------------------------------------------------------------------- /iclientpy/test/viz/test_ranksymbolthememap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/viz/test_ranksymbolthememap.py -------------------------------------------------------------------------------- /iclientpy/test/workspace_publish/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iclientpy/test/workspace_publish/test_workspacepublish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/test/workspace_publish/test_workspacepublish.py -------------------------------------------------------------------------------- /iclientpy/tool/buildtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperMap/iclient-python/HEAD/iclientpy/tool/buildtool.py --------------------------------------------------------------------------------