I'm creating a spatial table in PostGIS. My geometries are going to be abstract, not related to a real world. So I need some fake SRID. What is the right way to do it?
Is it possible to use a fake projection in PostGIS?
100 Views Asked by Alexey Pomelov At
1
There are 1 best solutions below
Related Questions in POSTGIS
- Play Framework Unable to build entity manager factory when Working with PostGIS
- ST_SetSRID ST_Point PostGIS giving strange output
- Create a Geoserver layer with data from a Postgis SQL view with Python/gsconfig
- NoMethodError using activerecord_postgis_adapter
- Access PostGIS functions in PyCharm Database Navigator
- how to detect polygons within other (many) polygons in postgis
- iterate and write separately linestrings (generate_series)
- What is wrong with this ST_CONTAINS statement PostGIS - Find point in polygon
- Accurate Bounding Box From Geography Polygon
- Getting Postgis/JDBC to work with BoneCP in Spring
- How do you pass in timestamp variable into JDBC request for jmeter
- PostGIS only works with root user
- Symbol not found - POSTGIS on PostgreSQL 9.3.3 Mac OS X 10.10
- Cannot CREATE EXTENSION postgis, $libdir/postgis-2.1 not found
- Using psql options in npgsql
Related Questions in PROJECTION
- Alloy traces and projection issues
- Projection with single child object
- Must polygon prism have interior angles >144 degree to have sides visible after projection transform?
- Random projection in Python Pandas using a dataframe containing NaN values
- How to correctly leverage Content, Widgets and Layers in Orchard
- Empty references and collections in Projections processing issue
- Using radon function to find black bar position in white background image
- Issue with projection in SpringDataRest and @Lob attribute
- OpenCV to OpenGL perspective projection matrix slight error
- MongoDB: Make a projection to return just the first element of an array nested to another array nested to an object
- OpenGL and C++ projection matrix not working
- Projecting a single record with a static Func<>
- Lambert conic conformal projection in d3
- OpenLayers GeoJson reprojection
- Perspective control in MATLAB 3D figures
Related Questions in SRID
- How to sort for non-geographical (X, Y, Z) distances using GeoDjango / PostGIS?
- Put points on the map, longitude/latitude not where they should be although SRID the same
- MySQL 8 st_distance_sphere gives different values for different SRID
- MariaDB ignores SRID in ST_PointFromWKB() function. Is this a bug or am I missing something?
- ARCGIS tiles to coordinates
- Error: st_crs(x) == st_crs(y) is not TRUE
- geodjango admin : An error occurred when transforming the geometry to the SRID of the geometry
- How do you know what SRID to use for a shp file?
- What spatial SRID is this? (trying to convert a .shp file to WSG84)
- MySQL Spatial - Convert Point from EPSG 4326 to 25831
- Why is MySQL Database not using my spatial index?
- Is it possible to use a fake projection in PostGIS?
- Set SRID in View From XY Data
- How is postgis treating coordinates sent with different SRID
- How I can transform GEOGRAPHY exemplar from one coordinate system to another in MS SQL Server?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If your coordinates are not part of any spatial reference system, use
SRID=0.(Or if you have older PostGIS versions, this is
SRID=-1)